mirror of
https://github.com/opentx/opentx.git
synced 2025-07-13 03:19:53 +03:00
43 lines
1.7 KiB
C
43 lines
1.7 KiB
C
/*
|
|
* Copyright (C) OpenTX
|
|
*
|
|
* Based on code named
|
|
* th9x - http://code.google.com/p/th9x
|
|
* er9x - http://code.google.com/p/er9x
|
|
* gruvin9x - http://code.google.com/p/gruvin9x
|
|
*
|
|
* License GPLv2: http://www.gnu.org/licenses/gpl-2.0.html
|
|
*
|
|
* 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 _STRHELPERS_H_
|
|
#define _STRHELPERS_H_
|
|
|
|
char * strAppend(char * dest, const char * source, int len=0);
|
|
char * strAppendUnsigned(char * dest, uint32_t value, uint8_t digits=0, uint8_t radix=10);
|
|
char * strAppendSigned(char * dest, int32_t value, uint8_t digits=0, uint8_t radix=10);
|
|
char * strSetCursor(char * dest, int position);
|
|
char * strAppendDate(char * str, bool time=false);
|
|
char * strAppendFilename(char * dest, const char * filename, const int size);
|
|
|
|
#if !defined(BOOT)
|
|
char * getStringAtIndex(char * dest, const char * s, int idx);
|
|
char * strAppendStringWithIndex(char * dest, const char * s, int idx);
|
|
#define LEN_TIMER_STRING 10 // "-00:00:00"
|
|
char * getTimerString(char * dest, int tme, uint8_t hours=0);
|
|
char * getCurveString(char * dest, int idx);
|
|
char * getGVarString(char * dest, int idx);
|
|
char * getSwitchPositionName(char * dest, swsrc_t idx);
|
|
char * getSwitchName(char * dest, swsrc_t idx);
|
|
char * getSourceString(char * dest, mixsrc_t idx);
|
|
#endif
|
|
|
|
#endif // _STRHELPERS_H_
|