1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-19 06:15:16 +03:00

Further reordering of CLI functions for clarity and to avoid forward declarations

This commit is contained in:
Martin Budden 2017-01-03 08:45:12 +00:00
parent 3cc85e83e7
commit e0d8879235
3 changed files with 298 additions and 313 deletions

View file

@ -15,14 +15,10 @@
* along with Cleanflight. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef CLI_H_
#define CLI_H_
#pragma once
extern uint8_t cliMode;
struct serialConfig_s;
void cliInit(struct serialConfig_s *serialConfig);
void cliProcess(void);
bool cliIsActiveOnPort(serialPort_t *serialPort);
#endif /* CLI_H_ */