mirror of
https://github.com/opentx/opentx.git
synced 2025-07-25 01:05:10 +03:00
New taskinfo command added to the CLI. CLI stack size increased as it was too short for the ls command (the CLI did hang!)
54 lines
1.5 KiB
C
54 lines
1.5 KiB
C
/*
|
|
* Authors (alphabetical order)
|
|
* - Andre Bernet <bernet.andre@gmail.com>
|
|
* - Andreas Weitl
|
|
* - Bertrand Songis <bsongis@gmail.com>
|
|
* - Bryan J. Rentoul (Gruvin) <gruvin@gmail.com>
|
|
* - Cameron Weeks <th9xer@gmail.com>
|
|
* - Erez Raviv
|
|
* - Gabriel Birkus
|
|
* - Jean-Pierre Parisy
|
|
* - Karl Szmutny
|
|
* - Michael Blandford
|
|
* - Michal Hlavinka
|
|
* - Pat Mackenzie
|
|
* - Philip Moss
|
|
* - Rob Thomson
|
|
* - Romolo Manfredini <romolo.manfredini@gmail.com>
|
|
* - Thomas Husterer
|
|
*
|
|
* opentx is based on code named
|
|
* gruvin9x by Bryan J. Rentoul: http://code.google.com/p/gruvin9x/,
|
|
* er9x by Erez Raviv: http://code.google.com/p/er9x/,
|
|
* and the original (and ongoing) project by
|
|
* Thomas Husterer, th9x: http://code.google.com/p/th9x/
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
*/
|
|
|
|
#ifndef _CLI_H_
|
|
#define _CLI_H_
|
|
|
|
#include "serial.h"
|
|
|
|
extern uint8_t cliTracesEnabled;
|
|
|
|
#ifdef __cplusplus
|
|
#include "fifo.h"
|
|
extern Fifo<256> cliRxFifo;
|
|
#include "tasks_arm.h"
|
|
#define CLI_STACK_SIZE 1000
|
|
extern TaskStack<CLI_STACK_SIZE> cliStack;
|
|
#endif
|
|
|
|
void cliStart();
|
|
|
|
#endif // _CLI_H_
|