-
Notifications
You must be signed in to change notification settings - Fork 33
Description
Not really an issue but some help and guidance on getting this working using a Macbook Pro running Big Sur
Using a ESP32 WROOM32 based board which I have selected as DOIT ESP32 DEVKIT V1 on the Arduino IDE.
Compiled and uploaded to device with no errors. I'm unsure about whether I should change any of the debug settings or serial port number. I'd like to use the USB programming port for communications which I think is Serial0 so have left as is.
There's no overnight MacOS build of the Pulseview so using 0.4.2.
Running Pulseview and then selecting the device Openbench... and the correct serial port does not find the device.
I see another issue about using MacOS to turn off DEBUG but the header code makes no sense to me.
'''
#define _DEBUG_MODE_x
#ifndef DEBUG_MODE
#define OLS_Port Serial //Serial //Serial1 //Serial2
#define OLS_Port_Baud 921600 //115200 // 3e6
#else
#define OLS_Port Serial2 //Serial //Serial1 //Serial2
#define OLS_Port_Baud 3e6 //115200 // 3e6
#define Serial_Debug_Port Serial //Serial1 //Serial2
#define Serial_Debug_Port_Baud 921600 //115200
#endif
'''
Any suggestions, thanks.
