17 lines
217 B
C
17 lines
217 B
C
//
|
|
// Created by dell on 24-11-29.
|
|
//
|
|
|
|
#ifndef RS485_H
|
|
#define RS485_H
|
|
|
|
#include "gd32e23x_it.h"
|
|
#include <stdbool.h>
|
|
#include <string.h>
|
|
|
|
#define RX_BUFFER_SIZE 64
|
|
|
|
void process_command(char *cmd);
|
|
|
|
#endif //RS485_H
|