Tried all the options. Move pin ESP32_WIFI_MODE_PIN to gpio 1. But the wifi access point did not appear.
ESP-ROM:esp32c3-api1-20210207
..
abort() was called at PC 0x4207ed05 on core 0
..
One of the ESP32-S3 boards arrived here today, so I had a quick attempt to get the HBG3 firmware going on it.
The first attempt had pretty much the same abort/dump that Romanov_AA saw on the ESP32-C3 board.
Okay, good. We have a baseline now from which to improve things! 
So next, I disabled most of the optional stuff of the HBG3, and began editing the *_PIN definitions. The built-in UARTs on the ESP32-S3 (and presumably on the ESP32-C3 as well) are not on the same pin numbers as with the ESP32. So all of those needed changing. I will try and make this automatic in the firmware, so it will work on most/all current ESP32 variants.
After fixing the *_PIN definitions for the serial ports and the two AUX buses, I tried again, and now the system boots up. It sometimes even broadcasts a WiFi signal, but as "HomeBrew-000000" instead of with a correct MAC address. The command-line interface on the debug USB port works fine, and it tries to talk to a mount (none connected, and I haven't wired up the HBG3 interface hardware yet).
So, progress. This may actually work at some point, but I've got a bit more fiddling to do there.
=========== Before Setup Start ===========
Chip Info:
------------------------------------------
Model : ESP32-S3
Package : 0
Revision : 0.02
Cores : 2
CPU Frequency : 160 MHz
XTAL Frequency : 40 MHz
Features Bitfield : 0x00000012
Embedded Flash : No
Embedded PSRAM : No
2.4GHz WiFi : Yes
Classic BT : No
BT Low Energy : Yes
IEEE 802.15.4 : No
------------------------------------------
INTERNAL Memory Info:
------------------------------------------
Total Size : 349224 B ( 341.0 KB)
Free Bytes : 312100 B ( 304.8 KB)
Allocated Bytes : 32124 B ( 31.4 KB)
Minimum Free Bytes: 306832 B ( 299.6 KB)
Largest Free Block: 253940 B ( 248.0 KB)
------------------------------------------
SPIRAM Memory Info:
------------------------------------------
Total Size : 8388608 B (8192.0 KB)
Free Bytes : 8386096 B (8189.5 KB)
Allocated Bytes : 136 B ( 0.1 KB)
Minimum Free Bytes: 8386096 B (8189.5 KB)
Largest Free Block: 8257524 B (8064.0 KB)
Bus Mode : OPI
------------------------------------------
Flash Info:
------------------------------------------
Chip Size : 16777216 B (16 MB)
Block Size : 65536 B ( 64.0 KB)
Sector Size : 4096 B ( 4.0 KB)
Page Size : 256 B ( 0.2 KB)
Bus Speed : 80 MHz
Bus Mode : QIO
------------------------------------------
Partitions Info:
------------------------------------------
nvs : addr: 0x00009000, size: 20.0 KB, type: DATA, subtype: NVS
otadata : addr: 0x0000E000, size: 8.0 KB, type: DATA, subtype: OTA
app0 : addr: 0x00010000, size: 1280.0 KB, type: APP, subtype: OTA_0
app1 : addr: 0x00150000, size: 1280.0 KB, type: APP, subtype: OTA_1
spiffs : addr: 0x00290000, size: 1408.0 KB, type: DATA, subtype: SPIFFS
coredump : addr: 0x003F0000, size: 64.0 KB, type: DATA, subtype: COREDUMP
------------------------------------------
Software Info:
------------------------------------------
Compile Date/Time : Jun 10 2025 13:11:56
Compile Host OS : linux
ESP-IDF Version : v5.5-dev-3129-gd930a386da-dirty
Arduino Version : 3.3.0
------------------------------------------
Board Info:
------------------------------------------
Arduino Board : ESP32S3_DEV
Arduino Variant : esp32s3
Arduino FQBN : esp32:esp32:esp32s3:JTAGAdapter=builtin,PSRAM=opi,FlashMode=qio,FlashSize=16M,LoopCore=1,EventsCore=1,USBMode=hwcdc,CDCOnBoot=default,MSCOnBoot=default,DFUOnBoot=default,UploadMode=default,PartitionScheme=default,CPUFreq=160,UploadSpeed=921600,DebugLevel=verbose,EraseFlash=none,ZigbeeMode=default
============ Before Setup End ============
...
HBG3-v8.69+ 2025-05-03: AUXRELAY=0 FRAM=0 ETH=NONE
OLED not detected
000000843 wifi_mode_switch: server_mode
WiFi scan started.
bus_loop: auxbus_tx is alive
000001876 auxbus_tx: auxtest: 3b 03 e2 10 fe 0d [HBG3 -> AZM ] GET_VERSION
000002888 auxbus_tx: auxtest: 3b 03 e2 10 fe 0d [HBG3 -> AZM ] GET_VERSION
WiFi scan: [0] ch=10 rssi=-47
WiFi scan: [1] ch=10 rssi=-47
WiFi scan channel loads: 1:0 2:0 3:0 4:0 5:0 6:4 7:10 8:20 9:40 10:80 11:40
esp32_wifi ON, server mode
wifi_begin_server_mode
esp32_wifi ON, softAP, ssid=HomeBrew-000000, passkey=
wifi_channel=1
000003900 auxbus_tx: auxtest: 3b 03 e2 10 fe 0d [HBG3 -> AZM ] GET_VERSION
000004912 auxbus_tx: auxtest: 3b 03 e2 10 fe 0d [HBG3 -> AZM ] GET_VERSION
000005924 auxbus_tx: auxtest: 3b 03 e2 10 fe 0d [HBG3 -> AZM ] GET_VERSION
000006936 auxbus_tx: auxtest: 3b 03 e2 10 fe 0d [HBG3 -> AZM ] GET_VERSION
000007948 auxbus_tx: auxtest: 3b 03 e2 10 fe 0d [HBG3 -> AZM ] GET_VERSION
000008960 auxbus_tx: auxtest: 3b 03 e2 10 fe 0d [HBG3 -> AZM ] GET_VERSION
000009972 auxbus_tx: auxtest: 3b 03 e2 10 fe 0d [HBG3 -> AZM ] GET_VERSION
000010984 auxbus_tx: auxtest: 3b 03 e2 10 fe 0d [HBG3 -> AZM ] GET_VERSION
000011996 auxbus_tx: auxtest: 3b 03 e2 10 fe 0d [HBG3 -> AZM ] GET_VERSION
free
free_heap=8634268, min_free=8632716, largest_free=8632716
...
At least the firmware shouldn't be running out of "RAM" any time soon.. over 8 MBytes available after boot-up!
Cheers
Edited by mlord, 10 June 2025 - 02:36 PM.