Add T3S3 target and different variants of the board

This commit is contained in:
jacob.eva 2024-07-09 09:40:30 +01:00
parent 236ea0b999
commit 35e9f36ffd
No known key found for this signature in database
GPG key ID: 0B92E083BBCCAA1E
6 changed files with 35 additions and 15 deletions

View file

@ -87,7 +87,7 @@ void setup() {
Serial.begin(serial_baudrate);
#if BOARD_MODEL != BOARD_RAK4631 && BOARD_MODEL != BOARD_RNODE_NG_22
#if BOARD_MODEL != BOARD_RAK4631 && BOARD_MODEL != BOARD_T3S3
// Some boards need to wait until the hardware UART is set up before booting
// the full firmware. In the case of the RAK4631, the line below will wait
// until a serial connection is actually established with a master. Thus, it
@ -1283,7 +1283,7 @@ void process_serial() {
void sleep_now() {
#if HAS_SLEEP == true
#if BOARD_MODEL == BOARD_RNODE_NG_22
#if BOARD_MODEL == BOARD_T3S3
display_intensity = 0;
update_display(true);
#endif