getEndAddress method

int getEndAddress()

Get the end of the hex file address

Implementation

int getEndAddress(){
  SoftDeviceVariant softDeviceVariant = getSoftDeviceVariant();
  if(softDeviceVariant == SoftDeviceVariant.s132){
    return s132EndAddress;
  }
  else{
    return s1x0EndAddress;
  }
}