What will be used? Settings in program or arduino IDE (LoRaWAN)

Hello, the same settings can i do in the arduino ide!

/OTAA or ABP/
bool overTheAirActivation = LORAWAN_NETMODE;

/ADR enable/
bool loraWanAdr = LORAWAN_ADR;

/* set LORAWAN_Net_Reserve ON, the node could save the network info to flash, when node reset not need to join again */
bool keepNet = LORAWAN_NET_RESERVE;

Wich command will be used when differend settings are done?

Greetings

E_T

May be this helps
https://docs.platformio.org/en/latest/platforms/asrmicro650x.html#configuration

Thank you, i use the arduino ide!

E_T

I believe I have overridden “some” of the vars within the program successfully when using the Arduino IDE,

But had less success with Platformio.
Not too helpful I know.

I believe to have found out the following facts:

The variables contain the value of the default settings of the Arduino IDE and do not stand for a defined value!

/* set LORAWAN_Net_Reserve ON, the node could save the network info to flash, when node reset not need to join again */
bool keepNet = LORAWAN_NET_RESERVE;

/* Indicates if the node is sending confirmed or unconfirmed messages */
bool isTxConfirmed = LORAWAN_UPLINKMODE;

E_T