Config platformio.ini for esp32-s3 n16r8

Hey guys, I am using ESP32 S3 WeAct ESP32-S3-B N16R8. I build a boards for this one and it look like this (latter section). Please someone help me to check. I already using the devkitc-1 but the monitor did not print the expected output
{

"build": {

  "arduino":{

    "ldscript": "esp32s3_out.ld",

    "partitions": "default_16MB.csv",

    "memory_type": "qio_opi"

  },

  "core": "esp32",

  "extra_flags": \[

    "-DARDUINO_ESP32S3_DEV",

    "-DBOARD_HAS_PSRAM",

    "-DARDUINO_USB_MODE=1",

    "-DARDUINO_USB_CDC_ON_BOOT=1"

  \],

  "f_cpu": "240000000L",

  "f_flash": "80000000L",

  "flash_mode": "qio",

  "psram_type": "opi",

  "hwids": \[

    \[

      "0x303A",

      "0x1001"

    \]

  \],

  "mcu": "esp32s3",

  "variant": "esp32s3"

},

"connectivity": \[

  "wifi",

  "bluetooth"

\],

"debug": {

  "default_tool": "esp-builtin",

  "onboard_tools": \[

    "esp-builtin"

  \],

  "openocd_target": "esp32s3.cfg"

},

"frameworks": \[

  "arduino",

  "espidf"

\],

"name": "Espressif ESP32-S3-DevKitC-1-N16R8V (16 MB QD, 8MB PSRAM)",

"upload": {

  "flash_size": "16MB",

  "maximum_ram_size": 327680,

  "maximum_size": 16777216,

  "require_upload_port": true,

  "speed": 921600

},

"url": " https://docs.espressif.com/projects/esp-idf/en/latest/esp32s3/hw-reference/esp32s3/user-guide-devkitc-1.html ",

"vendor": "Espressif"

}

This setting is not required and can / should be removed.

Afaik the board has two USB ports: one native USB and one via an USB to Serial chip.
These two lines will fix all your projects to the native USB port (-D ARDUINO_USB_CDC_ON_BOOT=1) in hardware USB Mode (-DARDUINO_USB_MODE=1)

You should remove the lines from your board manifest and allow the user to make these setting in the platformio.ini per project.

See esp32-s3-devkitc1-n16r8.json

Oh ok man, Tks a lottt