Where to set DTR/RTS in Arduino IDE 2 ?

Hi, I can set DTR/RTS in Platformio, such as:

But where to set DTR/RTS in Arduino IDE 2:

Best regards.

In boards.txt of the installed package; excerpt

##############################################################

dfrobot_firebeetle2_esp32s3.name=DFRobot Firebeetle 2 ESP32-S3

dfrobot_firebeetle2_esp32s3.bootloader.tool=esptool_py
dfrobot_firebeetle2_esp32s3.bootloader.tool.default=esptool_py

dfrobot_firebeetle2_esp32s3.upload.tool=esptool_py
dfrobot_firebeetle2_esp32s3.upload.tool.default=esptool_py
dfrobot_firebeetle2_esp32s3.upload.tool.network=esp_ota

dfrobot_firebeetle2_esp32s3.upload.maximum_size=1310720
dfrobot_firebeetle2_esp32s3.upload.maximum_data_size=327680
dfrobot_firebeetle2_esp32s3.upload.flags=
dfrobot_firebeetle2_esp32s3.upload.extra_flags=
dfrobot_firebeetle2_esp32s3.upload.use_1200bps_touch=false
dfrobot_firebeetle2_esp32s3.upload.wait_for_upload_port=false

dfrobot_firebeetle2_esp32s3.serial.disableDTR=false
dfrobot_firebeetle2_esp32s3.serial.disableRTS=false
...
...

Search for dfrobot_firebeetle2_esp32s3.

Not sure if it has the desired effect.

Thanks @sterretje
I modify the value of:

dfrobot_firebeetle2_esp32s3.serial.disableDTR=false
dfrobot_firebeetle2_esp32s3.serial.disableRTS=false

But has no effect.

I'm not 100% sure if this applies to boards.txt. You can try if deleting the directory C:\Users\yourUsername\AppData\Roaming\arduino-ide solves that problem. You need to close the IDE first.

I always delete that directory after modifying one of those .txt files.

You could use a better serial monitor. I use Termite

Possible disadvantage (I don't use Termite but it applies to most terminal programs) is that it does not automatically disconnect when you want to perform an upload.

I'm aware of one terminal program that can automatically disconnect based on focus; can't remember what it is called.

true; but once the settings have been set up you can connect / disconnect instantly just by clicking in the connection field.