minaddr method

int minaddr()

The min address for the hex file after the soft device

Implementation

int minaddr(){
  int minAdd = buffer.keys.first;
  minAdd = max(getEndAddress(), minAdd);
  return minAdd;
}