Serial communication

1. Experimental purpose

Use the serial port on the microROS control board to learn how the serial port receives and sends data.

 

2. Hardware connection

As shown in the figure below, the CP2102 serial port is an onboard component. To convert the serial port signal into a USB signal, a type-C data cable needs to be connected to the computer and the microROS control board for firmware burning and serial communication functions.

image-20240110155801868

image-20240110155902449

 

 

3. Core code analysis

The virtual machine path corresponding to the program source code is as follows

Since the usage methods of serial port 0 and serial port 1 are basically the same, the difference lies in the different pins. UART1_GPIO_TXD of serial port 1 corresponds to hardware GPIO17, and UART1_GPIO_RXD corresponds to hardware GPIO18. Since serial port 1 is used for lidar communication, the baud rate is set to 230400, while serial port 0 is used for communication with a baud rate of 115200.

Here we take serial port 0 as an example.

Initialize the GPIO of serial port 0, where UART0_GPIO_TXD corresponds to hardware GPIO43, and UART0_GPIO_RXD corresponds to hardware GPIO44. Set the baud rate of serial port 0 to 115200, 8-bit data, 1-bit stop, and no parity. At the same time, initialize the receiving buffer ringbuffer of serial port 0 and open serial port 0 to receive background tasks.

The serial port 0 background receiving task is mainly to cache the received serial port data and store it in the ringbuffer, which can achieve the data first-in-first-out function.

Serial port 0 sends a string of data.

Serial port 0 sends one byte.

Determine whether there is data in the cache of serial port 0 and return the number of data cached in serial port 0.

Read one byte from serial port 0 cache data

Clear the cached data of serial port 0.

Call the Uart0_Init and Uart1_Init functions in app_main to initialize serial port 0 and serial port 1, and read whether serial port 0 and serial port 1 have cached data in the loop. If there is cached data, the data will be sent out, thereby realizing the "self-receiver and self-send" function. .

 

4. Compile and download the burning firmware

Use a Type-C data cable to connect the virtual machine/computer and the microROS control board. If the system pops up, choose to connect to the virtual machine.

Activate the ESP-IDF development environment. Note that every time you open a new terminal, you need to activate the ESP-IDF development environment before compiling the firmware.

Enter the project directory

Compile, flash, and open the serial port simulator

If you need to exit the serial port simulator, press Ctrl+].

 

5. Experimental results

The serial port simulator prints the "hello yahboom" greeting. At this time, press Ctrl+] to exit the serial port simulator.

image-20240110202524419

Re-plug the Type-C serial port cable of the microROS control board, and then choose to connect to the host.

image-20240118174906096

Or find the CP2102 device icon in the upper right corner of the virtual machine software, right-click and select Disconnect (connect to host).

image-20240118174615779

At this time, the microROS control board is connected to the host and the serial port debugging assistant of the host is opened.

Search for the device number of CP2102 and open the serial port. The baud rate is 115200, 8-bit data, 1-bit stop, no parity, and no flow control. Select ASCII character mode in receive settings and send settings. Then enter any characters in the send box and press send. The serial port will send the received characters back. Thus realizing the function of spontaneous and self-receiving of the serial port.

Chinese serial port assistant software example renderings:

image-20240118180423413

The English interface can be set using the serial port Chinese picture example:

 

After the experiment, please click to close the serial port.