Skip to content

Commit

Permalink
Update README #12
Browse files Browse the repository at this point in the history
  • Loading branch information
lewisxhe committed Jan 20, 2024
1 parent 82314aa commit 9e500f4
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,25 @@ Please enter the upload mode manually.

2. If the above is invalid, burn the [binary file](./firmware/README.MD) to check whether the hardware is normal
3. **1.47 inches AMOLED(T-Display-AMOLED-Lite)** does not support hardware screen rotation function
4. If you use external power supply instead of USBC, please turn off the CDC option. This is because the board will wait for USB access when it starts.
* For Arduino IDE users, it can be turned off in the options , Please note that turning off USB CDC will turn off Serial redirection to USBC. At this time, you will not see any Serial message output when opening the port from USBC, but output from GPIO43 and GPIO44.

```c
Tools -> USB CDC On Boot -> Disable
```

* For Platformio users, you can add the following compilation flags in the ini file

```c
build_flags =
; Enable UARDUINO_USB_CDC_ON_BOOT will start printing and wait for terminal access during startup
; -DARDUINO_USB_CDC_ON_BOOT=1

; Enable UARDUINO_USB_CDC_ON_BOOT will turn off printing and will not block when using the battery
-UARDUINO_USB_CDC_ON_BOOT
```



# 8️⃣ Resource

Expand Down

0 comments on commit 9e500f4

Please sign in to comment.