Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
85d83f3
fix(uart): uses IDF 5.x API to set loopback
SuGlider Oct 9, 2024
412b76e
fix(uart): ESP32-P4 loopback functions
SuGlider Oct 9, 2024
d7bb46e
fix(uart): fix example
SuGlider Oct 9, 2024
55a2d1e
fix(uart): new testing loopback API
SuGlider Oct 9, 2024
4ef3148
fix(uart): new testing loopback API
SuGlider Oct 9, 2024
38b4474
fix(uart): new testing loopback API
SuGlider Oct 9, 2024
2b0672e
fix(uart): new testing loopback API
SuGlider Oct 9, 2024
7176970
fix(uart): new testing loopback API
SuGlider Oct 9, 2024
f078662
fix(uart): new testing loopback API
SuGlider Oct 9, 2024
61e2263
fix(uart): new testing loopback API
SuGlider Oct 9, 2024
5748548
fix(test): Fix UART validation test
lucasssvaz Oct 11, 2024
a0d685d
Merge branch 'release/v3.1.x' into uart_loop_back
SuGlider Oct 23, 2024
ef50176
fix(uart): fixes P4 pins for uart testing case
SuGlider Oct 24, 2024
c35b76e
fix(uart): fixes pins detaching - shall revert loopback
SuGlider Oct 24, 2024
8d73687
fix(uart): removes esp32-p4 rx2 and tx2 pin definition
SuGlider Oct 24, 2024
a97e7ab
fix(uart): no uart2,3,4 esp32-p4 pins check
SuGlider Oct 24, 2024
ec64369
fix(uart): update uart.ino commentaries
SuGlider Oct 24, 2024
3c93de7
feat(uart): allows the board pins_arduino.h to define other uart pins
SuGlider Oct 24, 2024
06dffa1
fix(uart): typo - additional } in the code
SuGlider Oct 24, 2024
f9b291f
fix(uart): wrong block coding - bad { }
SuGlider Oct 24, 2024
812e6c5
fix(uart): code blocks errors
SuGlider Oct 24, 2024
4c62634
fix(uart): CI error with uninitialized struct member
SuGlider Oct 24, 2024
df73cb4
fix(uart): fixes uart.ino CI test code
SuGlider Oct 24, 2024
d9c3987
fix(uart): keep previous pins as is in case -1 is used
SuGlider Oct 24, 2024
96d4757
Merge branch 'release/v3.1.x' into uart_loop_back
SuGlider Oct 25, 2024
b1428b3
fix(uart): making the source code the same as in the branch
SuGlider Oct 25, 2024
520ea66
feat(ci): simplification of uart testing sketch
SuGlider Oct 26, 2024
be20fcb
feat(ci): fixing and adapting perimanager teste
SuGlider Oct 26, 2024
6e5baf1
fix(ci): cleanup code
SuGlider Oct 26, 2024
cb7b967
fix(ci): minimal changes
SuGlider Oct 26, 2024
5ff67d6
fix(ci): restore log level to debug
SuGlider Oct 26, 2024
b342545
fix(ci): missing error message
SuGlider Oct 26, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(uart): new testing loopback API
Update Serial_STD_Func_OnReceive.ino to use new testing API
  • Loading branch information
SuGlider authored Oct 9, 2024
commit 2b0672eee15f94c336e770e33e00a25e9ef1c529
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ void setup() {
// creating a loopback that will allow to write to TEST_UART number
// and send it to RX with no need to physically connect both pins
#if TEST_UART > 0
uart_internal_loopback(TEST_UART, RXPIN);
uart_internal_loopback(TEST_UART, true);
#else
// when UART0 is used for testing, it is necessary to send data using the Serial Monitor/Terminal
// Data must be sent by the CP2102, manually using the Serial Monitor/Terminal
Expand Down