1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-24 00:35:18 +03:00

Include guard script applied to all headers in the radio directory

This commit is contained in:
Bertrand Songis 2015-12-23 19:47:10 +01:00
parent b818c0df6b
commit 0f1ccc993e
60 changed files with 168 additions and 168 deletions

View file

@ -34,8 +34,8 @@
* *
*/ */
#ifndef audio_h #ifndef _AUDIO_ARM_H_
#define audio_h #define _AUDIO_ARM_H_
#include <stddef.h> #include <stddef.h>
#include "ff.h" #include "ff.h"
@ -403,4 +403,4 @@ void referenceModelAudioFiles();
bool isAudioFileReferenced(uint32_t i, char * filename/*at least AUDIO_FILENAME_MAXLEN+1 long*/); bool isAudioFileReferenced(uint32_t i, char * filename/*at least AUDIO_FILENAME_MAXLEN+1 long*/);
#endif #endif // _AUDIO_ARM_H_

View file

@ -34,8 +34,8 @@
* *
*/ */
#ifndef audio_h #ifndef _AUDIO_AVR_H_
#define audio_h #define _AUDIO_AVR_H_
#if defined(PCBSTD) #if defined(PCBSTD)
#define speakerOn() buzzerOn() #define speakerOn() buzzerOn()
@ -165,4 +165,4 @@ void audioDefevent(uint8_t e);
#define PLAY_MODEL_NAME() #define PLAY_MODEL_NAME()
#define START_SILENCE_PERIOD() #define START_SILENCE_PERIOD()
#endif #endif // _AUDIO_AVR_H_

View file

@ -1,5 +1,5 @@
#ifndef binallocator_h #ifndef _BIN_ALLOCATOR_H_
#define binallocator_h #define _BIN_ALLOCATOR_H_
#include "debug.h" #include "debug.h"
@ -75,4 +75,4 @@ extern BinAllocator_slots2 slots2;
void *bin_l_alloc (void *ud, void *ptr, size_t osize, size_t nsize); void *bin_l_alloc (void *ud, void *ptr, size_t osize, size_t nsize);
#endif //#if defined(USE_BIN_ALLOCATOR) #endif //#if defined(USE_BIN_ALLOCATOR)
#endif //binallocator_h #endif // _BIN_ALLOCATOR_H_

View file

@ -34,8 +34,8 @@
* *
*/ */
#ifndef BUZZER_H #ifndef _BUZZER_H_
#define BUZZER_H #define _BUZZER_H_
#if defined(BUZZER) #if defined(BUZZER)
extern uint8_t g_beepCnt; extern uint8_t g_beepCnt;
@ -189,4 +189,4 @@ inline void BUZZER_HEARTBEAT()
#endif // BUZZER #endif // BUZZER
#endif // CPUARM #endif // CPUARM
#endif #endif // _BUZZER_H_

View file

@ -34,8 +34,8 @@
* *
*/ */
#ifndef debug_h #ifndef _DEBUG_H_
#define debug_h #define _DEBUG_H_
#include <inttypes.h> #include <inttypes.h>
#include "rtc.h" #include "rtc.h"
@ -170,5 +170,5 @@ void dumpTraceBuffer();
#endif #endif
#endif // #ifndef debug_h #endif // _DEBUG_H_

View file

@ -34,8 +34,8 @@
* *
*/ */
#ifndef _FIFO_H_ #ifndef _FIFO_H_
#define _FIFO_H_ #define _FIFO_H_
template <int N> template <int N>
class Fifo class Fifo
@ -90,4 +90,4 @@ class Fifo
volatile uint32_t ridx; volatile uint32_t ridx;
}; };
#endif // _FIFO_H_ #endif // _FIFO_H_

View file

@ -34,8 +34,8 @@
* *
*/ */
#ifndef fonts_h #ifndef _FONTS_H_
#define fonts_h #define _FONTS_H_
#if defined(COLORLCD) #if defined(COLORLCD)
@ -64,4 +64,4 @@ extern const pm_uchar font_4x6_extra[];
#endif #endif
#endif #endif // _FONTS_H_

View file

@ -34,8 +34,8 @@
* *
*/ */
#ifndef _LCD_H #ifndef _LCD_H_
#define _LCD_H #define _LCD_H_
#define LCD_W 128 #define LCD_W 128
#define LCD_H 64 #define LCD_H 64
@ -273,4 +273,4 @@ uint8_t lcdRefresh_ST7920(uint8_t full);
#define BLINK_ON_PHASE (g_blinkTmr10ms & (1<<6)) #define BLINK_ON_PHASE (g_blinkTmr10ms & (1<<6))
#endif #endif
#endif #endif // _LCD_H_

View file

@ -96,4 +96,4 @@ enum menuMavlinkSetupItems {
//! \brief Menu index varible, initialized on info menu. //! \brief Menu index varible, initialized on info menu.
uint8_t MAVLINK_menu = MENU_INFO; uint8_t MAVLINK_menu = MENU_INFO;
#endif #endif // _VIEW_MAVLINK_H_

View file

@ -34,8 +34,8 @@
* *
*/ */
#ifndef haptic_h #ifndef _HAPTIC_H_
#define haptic_h #define _HAPTIC_H_
#define HAPTIC_QUEUE_LENGTH 4 #define HAPTIC_QUEUE_LENGTH 4
@ -90,4 +90,4 @@ extern hapticQueue haptic;
#define HAPTIC_HEARTBEAT() haptic.heartbeat() #define HAPTIC_HEARTBEAT() haptic.heartbeat()
#endif // haptic_h #endif // _HAPTIC_H_

View file

@ -34,8 +34,8 @@
* *
*/ */
#ifndef _KEYS_H_ #ifndef _KEYS_H_
#define _KEYS_H_ #define _KEYS_H_
enum EnumKeys { enum EnumKeys {
#if defined(PCBHORUS) #if defined(PCBHORUS)
@ -289,4 +289,4 @@ void killEvents(uint8_t enuk);
uint8_t keyDown(); uint8_t keyDown();
#endif // _KEYS_H_ #endif // _KEYS_H_

View file

@ -34,8 +34,8 @@
* *
*/ */
#ifndef myeeprom_h #ifndef _MYEEPROM_H_
#define myeeprom_h #define _MYEEPROM_H_
#include <inttypes.h> #include <inttypes.h>
@ -2358,4 +2358,4 @@ extern ModelData g_model;
#define TOTAL_EEPROM_USAGE (sizeof(ModelData)*MAX_MODELS + sizeof(EEGeneral)) #define TOTAL_EEPROM_USAGE (sizeof(ModelData)*MAX_MODELS + sizeof(EEGeneral))
#endif #endif // _MYEEPROM_H_

View file

@ -34,8 +34,8 @@
* *
*/ */
#ifndef opentx_h #ifndef _OPENTX_H_
#define opentx_h #define _OPENTX_H_
#include <inttypes.h> #include <inttypes.h>
#include <string.h> #include <string.h>
@ -1738,4 +1738,4 @@ extern Clipboard clipboard;
extern uint16_t s_anaFilt[NUMBER_ANALOG]; extern uint16_t s_anaFilt[NUMBER_ANALOG];
#endif #endif
#endif #endif // _OPENTX_H_

View file

@ -34,8 +34,8 @@
* *
*/ */
#ifndef __PGMTYPES__ #ifndef _PGMTYPES_H_
#define __PGMTYPES__ #define _PGMTYPES_H_
/* this is workaround for g++ bug: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34734 */ /* this is workaround for g++ bug: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34734 */
#if (((__GNUC__ * 1000) + __GNUC_MINOR__) * 1000 + __GNUC_PATCHLEVEL__) < 4006002 #if (((__GNUC__ * 1000) + __GNUC_MINOR__) * 1000 + __GNUC_PATCHLEVEL__) < 4006002
@ -73,5 +73,5 @@ typedef uint16_t pm_uint16_t;
typedef int32_t pm_int32_t; typedef int32_t pm_int32_t;
typedef uint32_t pm_uint32_t; typedef uint32_t pm_uint32_t;
#endif /* __PGMTYPES__ */ #endif // _PGMTYPES_H_

View file

@ -34,8 +34,8 @@
* *
*/ */
#ifndef PULSES_COMMON_H #ifndef _PULSES_H_
#define PULSES_COMMON_H #define _PULSES_H_
enum ModuleFlag enum ModuleFlag
{ {
@ -90,4 +90,4 @@ enum ModuleFlag
#include "pulses_avr.h" #include "pulses_avr.h"
#endif #endif
#endif #endif // _PULSES_H_

View file

@ -34,8 +34,8 @@
* *
*/ */
#ifndef pulses_arm_h #ifndef _PULSES_ARM_H_
#define pulses_arm_h #define _PULSES_ARM_H_
#if NUM_MODULES == 2 #if NUM_MODULES == 2
#define MODULES_INIT(...) __VA_ARGS__, __VA_ARGS__ #define MODULES_INIT(...) __VA_ARGS__, __VA_ARGS__
@ -144,4 +144,4 @@ inline void SEND_FAILSAFE_1S()
failsafeCounter[i] = 100; failsafeCounter[i] = 100;
} }
#endif #endif // _PULSES_ARM_H_

View file

@ -34,8 +34,8 @@
* *
*/ */
#ifndef pulses_avr_h #ifndef _PULSES_AVR_H_
#define pulses_avr_h #define _PULSES_AVR_H_
extern uint8_t s_current_protocol[1]; extern uint8_t s_current_protocol[1];
extern uint8_t s_pulses_paused; extern uint8_t s_pulses_paused;
@ -60,5 +60,5 @@ void DSM2_Done();
#define SEND_FAILSAFE_NOW() #define SEND_FAILSAFE_NOW()
#define SEND_FAILSAFE_1S() #define SEND_FAILSAFE_1S()
#endif #endif // _PULSES_AVR_H_
/*eof*/ /*eof*/

View file

@ -34,8 +34,8 @@
* *
*/ */
#ifndef pwr_h #ifndef _PWR_H_
#define pwr_h #define _PWR_H_
enum PowerState { enum PowerState {
e_power_on, e_power_on,
@ -45,4 +45,4 @@ enum PowerState {
e_power_press, e_power_press,
}; };
#endif #endif // _PWR_H_

View file

@ -34,8 +34,8 @@
* *
*/ */
#ifndef RTC_H #ifndef _RTC_H_
#define RTC_H #define _RTC_H_
#include <inttypes.h> #include <inttypes.h>
@ -71,4 +71,4 @@ gtime_t gmktime (struct gtm *tm);
} }
#endif #endif
#endif #endif // _RTC_H_

View file

@ -112,5 +112,5 @@ const char * sdCopyFile(const char * srcFilename, const char * srcDir, const cha
#define LIST_NONE_SD_FILE 1 #define LIST_NONE_SD_FILE 1
bool sdListFiles(const char * path, const char * extension, const uint8_t maxlen, const char * selection, uint8_t flags=0); bool sdListFiles(const char * path, const char * extension, const uint8_t maxlen, const char * selection, uint8_t flags=0);
#endif #endif // _SDCARD_H_

View file

@ -34,8 +34,8 @@
* *
*/ */
#ifndef _SERIAL_H_ #ifndef _SERIAL_H_
#define _SERIAL_H_ #define _SERIAL_H_
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
@ -51,5 +51,5 @@ void serialCrlf();
#define serialPrint(...) do { serialPrintf(__VA_ARGS__); serialCrlf(); } while(0) #define serialPrint(...) do { serialPrintf(__VA_ARGS__); serialCrlf(); } while(0)
#endif // _SERIAL_H_ #endif // _SERIAL_H_

View file

@ -34,8 +34,8 @@
* *
*/ */
#ifndef eeprom_arm_h #ifndef _EEPROM_RAW_H_
#define eeprom_arm_h #define _EEPROM_RAW_H_
#include <inttypes.h> #include <inttypes.h>
#include <stdint.h> #include <stdint.h>
@ -81,4 +81,4 @@ void eepromWriteProcess();
void eepromWriteWait(EepromWriteState state = EEPROM_IDLE); void eepromWriteWait(EepromWriteState state = EEPROM_IDLE);
bool eepromOpen(); bool eepromOpen();
#endif #endif // _EEPROM_RAW_H_

View file

@ -284,4 +284,4 @@ inline bool isEepromStart(const void * buffer)
} }
#endif #endif
#endif #endif // _EEPROM_RLC_H_

View file

@ -63,6 +63,6 @@ const char * storageRemoveCategory(int category);
bool storageReadNextCategory(StorageModelsList * storage, char * line, int maxlen); bool storageReadNextCategory(StorageModelsList * storage, char * line, int maxlen);
bool storageSeekCategory(StorageModelsList * storage, int category); bool storageSeekCategory(StorageModelsList * storage, int category);
#endif #endif // _SDCARD_RAW_H_

View file

@ -73,4 +73,4 @@ void postModelLoad(bool newModel);
#include "sdcard_raw.h" #include "sdcard_raw.h"
#endif #endif
#endif #endif // _STORAGE_H_

View file

@ -34,8 +34,8 @@
* *
*/ */
#ifndef board_stock_h #ifndef _BOARD_STOCK_H_
#define board_stock_h #define _BOARD_STOCK_H_
#include "../common_avr/board_avr.h" #include "../common_avr/board_avr.h"
@ -250,4 +250,4 @@ void rotencPoll();
#define eepromReadBlock(a, b, c) eeprom_read_block(a, (const void *)b, c) #define eepromReadBlock(a, b, c) eeprom_read_block(a, (const void *)b, c)
#endif #endif
#endif #endif // _BOARD_STOCK_H_

View file

@ -14,8 +14,8 @@
* *
*/ */
#ifndef _SERIAL_H_ #ifndef _SERIAL_DRIVER_H_
#define _SERIAL_H_ #define _SERIAL_DRIVER_H_
typedef enum serial_tx_state_ { typedef enum serial_tx_state_ {
TX_STATE_EMPTY = 0, // TX_STATE_EMPTY = 0, //
@ -56,4 +56,4 @@ extern void SERIAL_send_uart_bytes(uint8_t * buf, uint16_t len);
void SERIAL_startTX(void); void SERIAL_startTX(void);
#define IS_TX_BUSY (serialTxState!=TX_STATE_EMPTY) #define IS_TX_BUSY (serialTxState!=TX_STATE_EMPTY)
#endif #endif // _SERIAL_DRIVER_H_

View file

@ -34,8 +34,8 @@
* *
*/ */
#ifndef board_gruvin9x_h #ifndef _BOARD_GRUVIN9X_H_
#define board_gruvin9x_h #define _BOARD_GRUVIN9X_H_
#include "../common_avr/board_avr.h" #include "../common_avr/board_avr.h"
@ -182,4 +182,4 @@ void pwrOff();
#define eepromReadBlock(a, b, c) eeprom_read_block(a, (const void *)b, c) #define eepromReadBlock(a, b, c) eeprom_read_block(a, (const void *)b, c)
#endif #endif
#endif #endif // _BOARD_GRUVIN9X_H_

View file

@ -34,8 +34,8 @@
* *
*/ */
#ifndef _BOARD_FLAMENCO_H_ #ifndef _BOARD_HORUS_H_
#define _BOARD_FLAMENCO_H_ #define _BOARD_HORUS_H_
#include "stddef.h" #include "stddef.h"
@ -330,4 +330,4 @@ void usbJoystickUpdate(void);
void checkTrainerSettings(void); void checkTrainerSettings(void);
#endif #endif // _BOARD_HORUS_H_

View file

@ -1,5 +1,5 @@
#ifndef _HAL_ #ifndef _HAL_H_
#define _HAL_ #define _HAL_H_
// Keys // Keys
#define KEYS_RCC_AHB1Periph_GPIO (RCC_AHB1Periph_GPIOB | RCC_AHB1Periph_GPIOC | RCC_AHB1Periph_GPIOD | RCC_AHB1Periph_GPIOE | RCC_AHB1Periph_GPIOG | RCC_AHB1Periph_GPIOH | RCC_AHB1Periph_GPIOI | RCC_AHB1Periph_GPIOJ) #define KEYS_RCC_AHB1Periph_GPIO (RCC_AHB1Periph_GPIOB | RCC_AHB1Periph_GPIOC | RCC_AHB1Periph_GPIOD | RCC_AHB1Periph_GPIOE | RCC_AHB1Periph_GPIOG | RCC_AHB1Periph_GPIOH | RCC_AHB1Periph_GPIOI | RCC_AHB1Periph_GPIOJ)
@ -249,4 +249,4 @@
#define TIMER_2MHz_APB1Periph RCC_APB1Periph_TIM7 #define TIMER_2MHz_APB1Periph RCC_APB1Periph_TIM7
#define TIMER_2MHz_TIMER TIM7 #define TIMER_2MHz_TIMER TIM7
#endif #endif // _HAL_H_

View file

@ -27,8 +27,8 @@
*/ */
/* Define to prevent recursive inclusion -------------------------------------*/ /* Define to prevent recursive inclusion -------------------------------------*/
#ifndef __SDIO_SD_H #ifndef _SDIO_SD_H_
#define __SDIO_SD_H #define _SDIO_SD_H_
#include "../horus/board_horus.h" #include "../horus/board_horus.h"
@ -388,7 +388,7 @@ SD_Error SD_WaitWriteOperation(void);
extern SD_CardInfo SDCardInfo; extern SD_CardInfo SDCardInfo;
#endif /* __STM32F4_DISCOVERY_SDIO_SD_H */ #endif // _SDIO_SD_H_
/** /**
* @} * @}
*/ */

View file

@ -26,8 +26,8 @@
*/ */
/* Define to prevent recursive inclusion -------------------------------------*/ /* Define to prevent recursive inclusion -------------------------------------*/
#ifndef __USB_CONF__H__ #ifndef _USB_CONF_H_
#define __USB_CONF__H__ #define _USB_CONF_H_
#include "STM32F4xx_DSP_StdPeriph_Lib_V1.4.0/Libraries/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h" #include "STM32F4xx_DSP_StdPeriph_Lib_V1.4.0/Libraries/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h"
@ -165,7 +165,7 @@
#endif /* __CC_ARM */ #endif /* __CC_ARM */
#endif #endif
#endif //__USB_CONF__H__ #endif // _USB_CONF_H_
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/

View file

@ -26,8 +26,8 @@
*/ */
/* Define to prevent recursive inclusion -------------------------------------*/ /* Define to prevent recursive inclusion -------------------------------------*/
#ifndef __USBD_CONF__H__ #ifndef _USBD_CONF_H_
#define __USBD_CONF__H__ #define _USBD_CONF_H_
/* Includes ------------------------------------------------------------------*/ /* Includes ------------------------------------------------------------------*/
#include "../horus/usb_conf.h" #include "../horus/usb_conf.h"
@ -64,7 +64,7 @@
#define APP_RX_DATA_SIZE 512 // USB serial port output buffer. TODO: tune this buffer size /* Total size of IN buffer: APP_RX_DATA_SIZE*8/MAX_BAUDARATE*1000 should be > CDC_IN_FRAME_INTERVAL */ #define APP_RX_DATA_SIZE 512 // USB serial port output buffer. TODO: tune this buffer size /* Total size of IN buffer: APP_RX_DATA_SIZE*8/MAX_BAUDARATE*1000 should be > CDC_IN_FRAME_INTERVAL */
#define APP_FOPS VCP_fops #define APP_FOPS VCP_fops
#endif //__USBD_CONF__H__ #endif // _USBD_CONF_H_
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/

View file

@ -27,8 +27,8 @@
/* Define to prevent recursive inclusion -------------------------------------*/ /* Define to prevent recursive inclusion -------------------------------------*/
#ifndef __USB_DESC_H #ifndef _USBD_DESC_H_
#define __USB_DESC_H #define _USBD_DESC_H_
/* Includes ------------------------------------------------------------------*/ /* Includes ------------------------------------------------------------------*/
#include "usb_core.h" #include "usb_core.h"
@ -109,7 +109,7 @@ uint8_t * USBD_USR_USRStringDesc (uint8_t speed, uint8_t idx , uint16_t *len
* @} * @}
*/ */
#endif /* __USBD_DESC_H */ #endif // _USBD_DESC_H_
/** /**
* @} * @}

View file

@ -35,8 +35,8 @@
* *
*/ */
#ifndef board_mega2560_h #ifndef _BOARD_MEGA2560_H_
#define board_mega2560_h #define _BOARD_MEGA2560_H_
#include "../common_avr/board_avr.h" #include "../common_avr/board_avr.h"
@ -178,4 +178,4 @@ void pwrOff();
#define eepromReadBlock(a, b, c) eeprom_read_block(a, (const void *)b, c) #define eepromReadBlock(a, b, c) eeprom_read_block(a, (const void *)b, c)
#endif #endif
#endif #endif // _BOARD_MEGA2560_H_

View file

@ -34,8 +34,8 @@
* *
*/ */
#ifndef simpgmspace_h #ifndef _SIMPGMSPACE_H_
#define simpgmspace_h #define _SIMPGMSPACE_H_
extern int g_snapshot_idx; extern int g_snapshot_idx;
@ -453,4 +453,4 @@ extern char simuSdDirectory[1024];
#define sd_card_ready() (true) #define sd_card_ready() (true)
#define sdMounted() (true) #define sdMounted() (true)
#endif #endif // _SIMPGMSPACE_H_

View file

@ -31,8 +31,8 @@
/* Generated by : AT91 SW Application Group */ /* Generated by : AT91 SW Application Group */
/* Generated on : 2009-10-26 */ /* Generated on : 2009-10-26 */
#ifndef AT91SAM3S_H #ifndef _AT91SAM3S2_H_
#define AT91SAM3S_H #define _AT91SAM3S2_H_
/** \addtogroup AT91SAM3S_definitions AT91SAM3S definitions /** \addtogroup AT91SAM3S_definitions AT91SAM3S definitions
This file defines all structures and symbols for AT91SAM3S: This file defines all structures and symbols for AT91SAM3S:
@ -7013,4 +7013,4 @@ typedef struct {
/*@}*/ /*@}*/
#endif /* AT91SAM3S_H */ #endif // _AT91SAM3S2_H_

View file

@ -31,8 +31,8 @@
/* Generated by : AT91 SW Application Group */ /* Generated by : AT91 SW Application Group */
/* Generated on : 2009-10-26 */ /* Generated on : 2009-10-26 */
#ifndef AT91SAM3S_H #ifndef _AT91SAM3S4_H_
#define AT91SAM3S_H #define _AT91SAM3S4_H_
/** \addtogroup AT91SAM3S_definitions AT91SAM3S definitions /** \addtogroup AT91SAM3S_definitions AT91SAM3S definitions
This file defines all structures and symbols for AT91SAM3S: This file defines all structures and symbols for AT91SAM3S:
@ -7116,4 +7116,4 @@ typedef struct {
/*@}*/ /*@}*/
#endif /* AT91SAM3S_H */ #endif // _AT91SAM3S4_H_

View file

@ -45,8 +45,8 @@
/// ///
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#ifndef MEDIA_H #ifndef _MEDIA_H_
#define MEDIA_H #define _MEDIA_H_
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// Definitions // Definitions
@ -284,5 +284,5 @@ static inline void MED_Handler(Media *media)
extern void MED_HandleAll(Media *medias, unsigned char numMedias); extern void MED_HandleAll(Media *medias, unsigned char numMedias);
#endif // _MEDIA_H #endif // _MEDIA_H_

View file

@ -34,8 +34,8 @@
* *
*/ */
#ifndef _AUDIO_DRIVER_H_ #ifndef _AUDIO_DRIVER_H_
#define _AUDIO_DRIVER_H_ #define _AUDIO_DRIVER_H_
void audioInit( void ) ; void audioInit( void ) ;
void audioEnd( void ) ; void audioEnd( void ) ;
@ -59,4 +59,4 @@ extern const int8_t volumeScale[];
void setVolume(uint8_t volume); void setVolume(uint8_t volume);
#endif // _AUDIO_DRIVER_H_ #endif // _AUDIO_DRIVER_H_

View file

@ -36,8 +36,8 @@
// TODO merge this file with board_sky9x.h // TODO merge this file with board_sky9x.h
#ifndef board_h #ifndef _BOARD_H_
#define board_h #define _BOARD_H_
#include <stdint.h> #include <stdint.h>
@ -650,4 +650,4 @@ struct t_serial_tx
volatile uint16_t ready ; volatile uint16_t ready ;
}; };
#endif #endif // _BOARD_H_

View file

@ -34,8 +34,8 @@
* *
*/ */
#ifndef board_sky9x_h #ifndef _BOARD_SKY9X_H_
#define board_sky9x_h #define _BOARD_SKY9X_H_
#include <stdio.h> #include <stdio.h>
#include "board.h" #include "board.h"
@ -308,4 +308,4 @@ void telemetryTransmitBuffer(uint8_t * buffer, uint32_t size);
void serial2TelemetryInit(unsigned int protocol); void serial2TelemetryInit(unsigned int protocol);
bool telemetrySecondPortReceive(uint8_t & data); bool telemetrySecondPortReceive(uint8_t & data);
#endif #endif // _BOARD_SKY9X_H_

View file

@ -39,8 +39,8 @@
/// -# For misc, see "AT91SAM3S4 - Misc". /// -# For misc, see "AT91SAM3S4 - Misc".
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#ifndef CHIP_H #ifndef _CHIP_H_
#define CHIP_H #define _CHIP_H_
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// Headers // Headers
@ -126,5 +126,5 @@
//Misc //Misc
#endif //#ifndef CHIP_H #endif // _CHIP_H_

View file

@ -21,8 +21,8 @@
* *
******************************************************************************/ ******************************************************************************/
#ifndef __CM3_CORE_H__ #ifndef _CORE_CM3_H_
#define __CM3_CORE_H__ #define _CORE_CM3_H_
/** @addtogroup CMSIS_CM3_core_LintCinfiguration CMSIS CM3 Core Lint Configuration /** @addtogroup CMSIS_CM3_core_LintCinfiguration CMSIS CM3 Core Lint Configuration
* *
@ -1813,6 +1813,6 @@ static __INLINE int ITM_CheckChar (void) {
/*@}*/ /* end of group CMSIS_CM3_core_definitions */ /*@}*/ /* end of group CMSIS_CM3_core_definitions */
#endif /* __CM3_CORE_H__ */ #endif // _CORE_CM3_H_
/*lint -restore */ /*lint -restore */

View file

@ -8,8 +8,8 @@
* * * *
****************************************************************************** ******************************************************************************
*/ */
#ifndef _ASPI_H_ #ifndef _ASPI_H_
#define _ASPI_H_ #define _ASPI_H_
#if defined(__cplusplus) && !defined(SIMU) #if defined(__cplusplus) && !defined(SIMU)
extern "C" { extern "C" {
@ -39,5 +39,5 @@ void AspiData(u8 Para_data);
} }
#endif #endif
#endif #endif // _ASPI_H_

View file

@ -34,8 +34,8 @@
* *
*/ */
#ifndef _BOARD_TARANIS_H_ #ifndef _BOARD_TARANIS_H_
#define _BOARD_TARANIS_H_ #define _BOARD_TARANIS_H_
#include "stddef.h" #include "stddef.h"
@ -400,4 +400,4 @@ void usbJoystickUpdate(void);
extern uint8_t currentTrainerMode; extern uint8_t currentTrainerMode;
void checkTrainerSettings(void); void checkTrainerSettings(void);
#endif #endif // _BOARD_TARANIS_H_

View file

@ -1,5 +1,5 @@
#ifndef _HAL_ #ifndef _HAL_H_
#define _HAL_ #define _HAL_H_
// Keys // Keys
#define KEYS_GPIO_REG_MENU GPIOD->IDR #define KEYS_GPIO_REG_MENU GPIOD->IDR
@ -567,4 +567,4 @@
#define TIMER_2MHz_APB1Periph RCC_APB1Periph_TIM7 #define TIMER_2MHz_APB1Periph RCC_APB1Periph_TIM7
#define TIMER_2MHz_TIMER TIM7 #define TIMER_2MHz_TIMER TIM7
#endif #endif // _HAL_H_

View file

@ -26,8 +26,8 @@
*/ */
/* Define to prevent recursive inclusion -------------------------------------*/ /* Define to prevent recursive inclusion -------------------------------------*/
#ifndef __USB_CONF__H__ #ifndef _USB_CONF_H_
#define __USB_CONF__H__ #define _USB_CONF_H_
#if defined(REV9E) #if defined(REV9E)
#include "STM32F4xx_DSP_StdPeriph_Lib_V1.4.0/Libraries/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h" #include "STM32F4xx_DSP_StdPeriph_Lib_V1.4.0/Libraries/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h"
@ -169,7 +169,7 @@
#endif /* __CC_ARM */ #endif /* __CC_ARM */
#endif #endif
#endif //__USB_CONF__H__ #endif // _USB_CONF_H_
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/

View file

@ -26,8 +26,8 @@
*/ */
/* Define to prevent recursive inclusion -------------------------------------*/ /* Define to prevent recursive inclusion -------------------------------------*/
#ifndef __USBD_CONF__H__ #ifndef _USBD_CONF_H_
#define __USBD_CONF__H__ #define _USBD_CONF_H_
/* Includes ------------------------------------------------------------------*/ /* Includes ------------------------------------------------------------------*/
#include "usb_conf.h" #include "usb_conf.h"
@ -64,7 +64,7 @@
#define APP_RX_DATA_SIZE 512 // USB serial port output buffer. TODO: tune this buffer size /* Total size of IN buffer: APP_RX_DATA_SIZE*8/MAX_BAUDARATE*1000 should be > CDC_IN_FRAME_INTERVAL */ #define APP_RX_DATA_SIZE 512 // USB serial port output buffer. TODO: tune this buffer size /* Total size of IN buffer: APP_RX_DATA_SIZE*8/MAX_BAUDARATE*1000 should be > CDC_IN_FRAME_INTERVAL */
#define APP_FOPS VCP_fops #define APP_FOPS VCP_fops
#endif //__USBD_CONF__H__ #endif // _USBD_CONF_H_
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/

View file

@ -27,8 +27,8 @@
/* Define to prevent recursive inclusion -------------------------------------*/ /* Define to prevent recursive inclusion -------------------------------------*/
#ifndef __USB_DESC_H #ifndef _USBD_DESC_H_
#define __USB_DESC_H #define _USBD_DESC_H_
/* Includes ------------------------------------------------------------------*/ /* Includes ------------------------------------------------------------------*/
#include "usb_core.h" #include "usb_core.h"
@ -109,7 +109,7 @@ uint8_t * USBD_USR_USRStringDesc (uint8_t speed, uint8_t idx , uint16_t *len
* @} * @}
*/ */
#endif /* __USBD_DESC_H */ #endif // _USBD_DESC_H_
/** /**
* @} * @}

View file

@ -34,8 +34,8 @@
* *
*/ */
#ifndef _TASKS_ARM_H_ #ifndef _TASKS_ARM_H_
#define _TASKS_ARM_H_ #define _TASKS_ARM_H_
#if !defined(SIMU) #if !defined(SIMU)
extern "C" { extern "C" {
@ -89,4 +89,4 @@ extern TaskStack<AUDIO_STACK_SIZE> audioStack;
void tasksStart(); void tasksStart();
#endif // _TASKS_ARM_H_ #endif // _TASKS_ARM_H_

View file

@ -34,10 +34,10 @@
* *
*/ */
#ifndef ardupilot_h #ifndef _ARDUPILOT_H_
#define ardupilot_h #define _ARDUPILOT_H_
void ARDUPILOT_Init(void); void ARDUPILOT_Init(void);
void ARDUPILOT_EnableRXD (void); void ARDUPILOT_EnableRXD (void);
void menuTelemetryArduPilot(uint8_t event); void menuTelemetryArduPilot(uint8_t event);
#endif #endif // _ARDUPILOT_H_

View file

@ -34,8 +34,8 @@
* *
*/ */
#ifndef FRSKY_H #ifndef _FRSKY_H_
#define FRSKY_H #define _FRSKY_H_
#include <inttypes.h> #include <inttypes.h>
@ -569,4 +569,4 @@ void processSerialData(uint8_t data);
#define MODEL_TELEMETRY_PROTOCOL() g_model.telemetryProtocol #define MODEL_TELEMETRY_PROTOCOL() g_model.telemetryProtocol
#endif #endif
#endif #endif // _FRSKY_H_

View file

@ -34,8 +34,8 @@
* *
*/ */
#ifndef jeti_h #ifndef _JETI_H_
#define jeti_h #define _JETI_H_
#define JETI_KEY_LEFT 0x70 #define JETI_KEY_LEFT 0x70
#define JETI_KEY_RIGHT 0xe0 #define JETI_KEY_RIGHT 0xe0
@ -52,5 +52,5 @@ void JETI_DisableTXD (void);
void telemetryInterrupt10ms(); void telemetryInterrupt10ms();
void menuTelemetryJeti(uint8_t event); void menuTelemetryJeti(uint8_t event);
#endif #endif // _JETI_H_

View file

@ -36,8 +36,8 @@
* Mavlink include file * Mavlink include file
*/ */
#ifndef _MAVLINK_H_ #ifndef _MAVLINK_H_
#define _MAVLINK_H_ #define _MAVLINK_H_
#define MAVLINK_USE_CONVENIENCE_FUNCTIONS #define MAVLINK_USE_CONVENIENCE_FUNCTIONS
#define MAVLINK_COMM_NUM_BUFFERS 1 #define MAVLINK_COMM_NUM_BUFFERS 1
@ -332,5 +332,5 @@ inline uint8_t getPrecisMavlinParamsValue(uint8_t idx) {
void lcd_outdezFloat(uint8_t x, uint8_t y, float val, uint8_t precis, uint8_t mode); void lcd_outdezFloat(uint8_t x, uint8_t y, float val, uint8_t precis, uint8_t mode);
#endif #endif
#endif #endif // _MAVLINK_H_

View file

@ -34,12 +34,12 @@
* *
*/ */
#ifndef nmea_h #ifndef _NMEA_H_
#define nmea_h #define _NMEA_H_
void NMEA_Init(void); void NMEA_Init(void);
void NMEA_EnableRXD (void); void NMEA_EnableRXD (void);
void menuTelemetryNMEA(uint8_t event); void menuTelemetryNMEA(uint8_t event);
#endif #endif // _NMEA_H_

View file

@ -34,8 +34,8 @@
* *
*/ */
#ifndef TELEMETRY_H #ifndef _TELEMETRY_H_
#define TELEMETRY_H #define _TELEMETRY_H_
extern Fifo<512> telemetryFifo; extern Fifo<512> telemetryFifo;
@ -200,4 +200,4 @@ void frskyDSetDefault(int index, uint16_t id);
#define IS_DISTANCE_UNIT(unit) ((unit) == UNIT_METERS || (unit) == UNIT_FEET) #define IS_DISTANCE_UNIT(unit) ((unit) == UNIT_METERS || (unit) == UNIT_FEET)
#define IS_SPEED_UNIT(unit) ((unit) >= UNIT_KTS && (unit) <= UNIT_MPH) #define IS_SPEED_UNIT(unit) ((unit) >= UNIT_KTS && (unit) <= UNIT_MPH)
#endif #endif // _TELEMETRY_H_

View file

@ -53,8 +53,8 @@
* *
*/ */
#ifndef TEMPLATES_H_ #ifndef _TEMPLATES_H_
#define TEMPLATES_H_ #define _TEMPLATES_H_
#include <inttypes.h> #include <inttypes.h>
@ -92,6 +92,6 @@ void clearMixes();
void clearCurves(); void clearCurves();
void applyTemplate(uint8_t idx); void applyTemplate(uint8_t idx);
#endif //TEMPLATES_H #endif // _TEMPLATES_H_

View file

@ -80,4 +80,4 @@ void timerSet(int idx, int val);
void evalTimers(int16_t throttle, uint8_t tick10ms); void evalTimers(int16_t throttle, uint8_t tick10ms);
#endif #endif // _TIMERS_H_

View file

@ -34,8 +34,8 @@
* *
*/ */
#ifndef translations_h #ifndef _TRANSLATIONS_H_
#define translations_h #define _TRANSLATIONS_H_
#if defined(TRANSLATIONS_FR) #if defined(TRANSLATIONS_FR)
#include "translations/fr.h" #include "translations/fr.h"
@ -974,4 +974,4 @@ extern const pm_char STR_BLCOLOR[];
#define CHR_HOUR TR_CHR_HOUR #define CHR_HOUR TR_CHR_HOUR
#define CHR_INPUT TR_CHR_INPUT #define CHR_INPUT TR_CHR_INPUT
#endif #endif // _TRANSLATIONS_H_