mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-21 15:25:36 +03:00
serial_common.c/h. decouple runtime_config from serial ports. decouple buzzer from serial ports. decouple opening of the main serial port from the msp code. decouple serial rx providers from runtime_config. rename core_t to serialPorts_t since it only contained serial ports. It's now clear which files use serial ports based on the header files they include.
15 lines
184 B
C
15 lines
184 B
C
/*
|
|
* cli.h
|
|
*
|
|
* Created on: 6 Apr 2014
|
|
* Author: Hydra
|
|
*/
|
|
|
|
#ifndef CLI_H_
|
|
#define CLI_H_
|
|
|
|
extern uint8_t cliMode;
|
|
|
|
void cliProcess(void);
|
|
|
|
#endif /* CLI_H_ */
|