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:
parent
b818c0df6b
commit
0f1ccc993e
60 changed files with 168 additions and 168 deletions
|
@ -34,8 +34,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef audio_h
|
||||
#define audio_h
|
||||
#ifndef _AUDIO_ARM_H_
|
||||
#define _AUDIO_ARM_H_
|
||||
|
||||
#include <stddef.h>
|
||||
#include "ff.h"
|
||||
|
@ -403,4 +403,4 @@ void referenceModelAudioFiles();
|
|||
|
||||
bool isAudioFileReferenced(uint32_t i, char * filename/*at least AUDIO_FILENAME_MAXLEN+1 long*/);
|
||||
|
||||
#endif
|
||||
#endif // _AUDIO_ARM_H_
|
||||
|
|
|
@ -34,8 +34,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef audio_h
|
||||
#define audio_h
|
||||
#ifndef _AUDIO_AVR_H_
|
||||
#define _AUDIO_AVR_H_
|
||||
|
||||
#if defined(PCBSTD)
|
||||
#define speakerOn() buzzerOn()
|
||||
|
@ -165,4 +165,4 @@ void audioDefevent(uint8_t e);
|
|||
#define PLAY_MODEL_NAME()
|
||||
#define START_SILENCE_PERIOD()
|
||||
|
||||
#endif
|
||||
#endif // _AUDIO_AVR_H_
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef binallocator_h
|
||||
#define binallocator_h
|
||||
#ifndef _BIN_ALLOCATOR_H_
|
||||
#define _BIN_ALLOCATOR_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);
|
||||
#endif //#if defined(USE_BIN_ALLOCATOR)
|
||||
|
||||
#endif //binallocator_h
|
||||
#endif // _BIN_ALLOCATOR_H_
|
||||
|
|
|
@ -34,8 +34,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef BUZZER_H
|
||||
#define BUZZER_H
|
||||
#ifndef _BUZZER_H_
|
||||
#define _BUZZER_H_
|
||||
|
||||
#if defined(BUZZER)
|
||||
extern uint8_t g_beepCnt;
|
||||
|
@ -189,4 +189,4 @@ inline void BUZZER_HEARTBEAT()
|
|||
#endif // BUZZER
|
||||
#endif // CPUARM
|
||||
|
||||
#endif
|
||||
#endif // _BUZZER_H_
|
||||
|
|
|
@ -34,8 +34,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef debug_h
|
||||
#define debug_h
|
||||
#ifndef _DEBUG_H_
|
||||
#define _DEBUG_H_
|
||||
|
||||
#include <inttypes.h>
|
||||
#include "rtc.h"
|
||||
|
@ -170,5 +170,5 @@ void dumpTraceBuffer();
|
|||
#endif
|
||||
|
||||
|
||||
#endif // #ifndef debug_h
|
||||
#endif // _DEBUG_H_
|
||||
|
||||
|
|
|
@ -34,8 +34,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef fonts_h
|
||||
#define fonts_h
|
||||
#ifndef _FONTS_H_
|
||||
#define _FONTS_H_
|
||||
|
||||
#if defined(COLORLCD)
|
||||
|
||||
|
@ -64,4 +64,4 @@ extern const pm_uchar font_4x6_extra[];
|
|||
|
||||
#endif
|
||||
|
||||
#endif
|
||||
#endif // _FONTS_H_
|
||||
|
|
|
@ -34,8 +34,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef _LCD_H
|
||||
#define _LCD_H
|
||||
#ifndef _LCD_H_
|
||||
#define _LCD_H_
|
||||
|
||||
#define LCD_W 128
|
||||
#define LCD_H 64
|
||||
|
@ -273,4 +273,4 @@ uint8_t lcdRefresh_ST7920(uint8_t full);
|
|||
#define BLINK_ON_PHASE (g_blinkTmr10ms & (1<<6))
|
||||
#endif
|
||||
|
||||
#endif
|
||||
#endif // _LCD_H_
|
||||
|
|
|
@ -96,4 +96,4 @@ enum menuMavlinkSetupItems {
|
|||
//! \brief Menu index varible, initialized on info menu.
|
||||
uint8_t MAVLINK_menu = MENU_INFO;
|
||||
|
||||
#endif
|
||||
#endif // _VIEW_MAVLINK_H_
|
||||
|
|
|
@ -34,8 +34,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef haptic_h
|
||||
#define haptic_h
|
||||
#ifndef _HAPTIC_H_
|
||||
#define _HAPTIC_H_
|
||||
|
||||
#define HAPTIC_QUEUE_LENGTH 4
|
||||
|
||||
|
@ -90,4 +90,4 @@ extern hapticQueue haptic;
|
|||
#define HAPTIC_HEARTBEAT() haptic.heartbeat()
|
||||
|
||||
|
||||
#endif // haptic_h
|
||||
#endif // _HAPTIC_H_
|
||||
|
|
|
@ -34,8 +34,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef myeeprom_h
|
||||
#define myeeprom_h
|
||||
#ifndef _MYEEPROM_H_
|
||||
#define _MYEEPROM_H_
|
||||
|
||||
#include <inttypes.h>
|
||||
|
||||
|
@ -2358,4 +2358,4 @@ extern ModelData g_model;
|
|||
|
||||
#define TOTAL_EEPROM_USAGE (sizeof(ModelData)*MAX_MODELS + sizeof(EEGeneral))
|
||||
|
||||
#endif
|
||||
#endif // _MYEEPROM_H_
|
||||
|
|
|
@ -34,8 +34,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef opentx_h
|
||||
#define opentx_h
|
||||
#ifndef _OPENTX_H_
|
||||
#define _OPENTX_H_
|
||||
|
||||
#include <inttypes.h>
|
||||
#include <string.h>
|
||||
|
@ -1738,4 +1738,4 @@ extern Clipboard clipboard;
|
|||
extern uint16_t s_anaFilt[NUMBER_ANALOG];
|
||||
#endif
|
||||
|
||||
#endif
|
||||
#endif // _OPENTX_H_
|
||||
|
|
|
@ -34,8 +34,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef __PGMTYPES__
|
||||
#define __PGMTYPES__
|
||||
#ifndef _PGMTYPES_H_
|
||||
#define _PGMTYPES_H_
|
||||
|
||||
/* 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
|
||||
|
@ -73,5 +73,5 @@ typedef uint16_t pm_uint16_t;
|
|||
typedef int32_t pm_int32_t;
|
||||
typedef uint32_t pm_uint32_t;
|
||||
|
||||
#endif /* __PGMTYPES__ */
|
||||
#endif // _PGMTYPES_H_
|
||||
|
||||
|
|
|
@ -34,8 +34,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef PULSES_COMMON_H
|
||||
#define PULSES_COMMON_H
|
||||
#ifndef _PULSES_H_
|
||||
#define _PULSES_H_
|
||||
|
||||
enum ModuleFlag
|
||||
{
|
||||
|
@ -90,4 +90,4 @@ enum ModuleFlag
|
|||
#include "pulses_avr.h"
|
||||
#endif
|
||||
|
||||
#endif
|
||||
#endif // _PULSES_H_
|
||||
|
|
|
@ -34,8 +34,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef pulses_arm_h
|
||||
#define pulses_arm_h
|
||||
#ifndef _PULSES_ARM_H_
|
||||
#define _PULSES_ARM_H_
|
||||
|
||||
#if NUM_MODULES == 2
|
||||
#define MODULES_INIT(...) __VA_ARGS__, __VA_ARGS__
|
||||
|
@ -144,4 +144,4 @@ inline void SEND_FAILSAFE_1S()
|
|||
failsafeCounter[i] = 100;
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif // _PULSES_ARM_H_
|
||||
|
|
|
@ -34,8 +34,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef pulses_avr_h
|
||||
#define pulses_avr_h
|
||||
#ifndef _PULSES_AVR_H_
|
||||
#define _PULSES_AVR_H_
|
||||
|
||||
extern uint8_t s_current_protocol[1];
|
||||
extern uint8_t s_pulses_paused;
|
||||
|
@ -60,5 +60,5 @@ void DSM2_Done();
|
|||
#define SEND_FAILSAFE_NOW()
|
||||
#define SEND_FAILSAFE_1S()
|
||||
|
||||
#endif
|
||||
#endif // _PULSES_AVR_H_
|
||||
/*eof*/
|
||||
|
|
|
@ -34,8 +34,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef pwr_h
|
||||
#define pwr_h
|
||||
#ifndef _PWR_H_
|
||||
#define _PWR_H_
|
||||
|
||||
enum PowerState {
|
||||
e_power_on,
|
||||
|
@ -45,4 +45,4 @@ enum PowerState {
|
|||
e_power_press,
|
||||
};
|
||||
|
||||
#endif
|
||||
#endif // _PWR_H_
|
||||
|
|
|
@ -34,8 +34,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef RTC_H
|
||||
#define RTC_H
|
||||
#ifndef _RTC_H_
|
||||
#define _RTC_H_
|
||||
|
||||
#include <inttypes.h>
|
||||
|
||||
|
@ -71,4 +71,4 @@ gtime_t gmktime (struct gtm *tm);
|
|||
}
|
||||
#endif
|
||||
|
||||
#endif
|
||||
#endif // _RTC_H_
|
||||
|
|
|
@ -112,5 +112,5 @@ const char * sdCopyFile(const char * srcFilename, const char * srcDir, const cha
|
|||
#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);
|
||||
|
||||
#endif
|
||||
#endif // _SDCARD_H_
|
||||
|
||||
|
|
|
@ -34,8 +34,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef eeprom_arm_h
|
||||
#define eeprom_arm_h
|
||||
#ifndef _EEPROM_RAW_H_
|
||||
#define _EEPROM_RAW_H_
|
||||
|
||||
#include <inttypes.h>
|
||||
#include <stdint.h>
|
||||
|
@ -81,4 +81,4 @@ void eepromWriteProcess();
|
|||
void eepromWriteWait(EepromWriteState state = EEPROM_IDLE);
|
||||
bool eepromOpen();
|
||||
|
||||
#endif
|
||||
#endif // _EEPROM_RAW_H_
|
||||
|
|
|
@ -284,4 +284,4 @@ inline bool isEepromStart(const void * buffer)
|
|||
}
|
||||
#endif
|
||||
|
||||
#endif
|
||||
#endif // _EEPROM_RLC_H_
|
||||
|
|
|
@ -63,6 +63,6 @@ const char * storageRemoveCategory(int category);
|
|||
bool storageReadNextCategory(StorageModelsList * storage, char * line, int maxlen);
|
||||
bool storageSeekCategory(StorageModelsList * storage, int category);
|
||||
|
||||
#endif
|
||||
#endif // _SDCARD_RAW_H_
|
||||
|
||||
|
||||
|
|
|
@ -73,4 +73,4 @@ void postModelLoad(bool newModel);
|
|||
#include "sdcard_raw.h"
|
||||
#endif
|
||||
|
||||
#endif
|
||||
#endif // _STORAGE_H_
|
||||
|
|
|
@ -34,8 +34,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef board_stock_h
|
||||
#define board_stock_h
|
||||
#ifndef _BOARD_STOCK_H_
|
||||
#define _BOARD_STOCK_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)
|
||||
#endif
|
||||
|
||||
#endif
|
||||
#endif // _BOARD_STOCK_H_
|
||||
|
|
|
@ -14,8 +14,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef _SERIAL_H_
|
||||
#define _SERIAL_H_
|
||||
#ifndef _SERIAL_DRIVER_H_
|
||||
#define _SERIAL_DRIVER_H_
|
||||
|
||||
typedef enum serial_tx_state_ {
|
||||
TX_STATE_EMPTY = 0, //
|
||||
|
@ -56,4 +56,4 @@ extern void SERIAL_send_uart_bytes(uint8_t * buf, uint16_t len);
|
|||
void SERIAL_startTX(void);
|
||||
#define IS_TX_BUSY (serialTxState!=TX_STATE_EMPTY)
|
||||
|
||||
#endif
|
||||
#endif // _SERIAL_DRIVER_H_
|
||||
|
|
|
@ -34,8 +34,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef board_gruvin9x_h
|
||||
#define board_gruvin9x_h
|
||||
#ifndef _BOARD_GRUVIN9X_H_
|
||||
#define _BOARD_GRUVIN9X_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)
|
||||
#endif
|
||||
|
||||
#endif
|
||||
#endif // _BOARD_GRUVIN9X_H_
|
||||
|
|
|
@ -34,8 +34,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef _BOARD_FLAMENCO_H_
|
||||
#define _BOARD_FLAMENCO_H_
|
||||
#ifndef _BOARD_HORUS_H_
|
||||
#define _BOARD_HORUS_H_
|
||||
|
||||
#include "stddef.h"
|
||||
|
||||
|
@ -330,4 +330,4 @@ void usbJoystickUpdate(void);
|
|||
|
||||
void checkTrainerSettings(void);
|
||||
|
||||
#endif
|
||||
#endif // _BOARD_HORUS_H_
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef _HAL_
|
||||
#define _HAL_
|
||||
#ifndef _HAL_H_
|
||||
#define _HAL_H_
|
||||
|
||||
// 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)
|
||||
|
@ -249,4 +249,4 @@
|
|||
#define TIMER_2MHz_APB1Periph RCC_APB1Periph_TIM7
|
||||
#define TIMER_2MHz_TIMER TIM7
|
||||
|
||||
#endif
|
||||
#endif // _HAL_H_
|
||||
|
|
|
@ -27,8 +27,8 @@
|
|||
*/
|
||||
|
||||
/* Define to prevent recursive inclusion -------------------------------------*/
|
||||
#ifndef __SDIO_SD_H
|
||||
#define __SDIO_SD_H
|
||||
#ifndef _SDIO_SD_H_
|
||||
#define _SDIO_SD_H_
|
||||
|
||||
#include "../horus/board_horus.h"
|
||||
|
||||
|
@ -388,7 +388,7 @@ SD_Error SD_WaitWriteOperation(void);
|
|||
|
||||
extern SD_CardInfo SDCardInfo;
|
||||
|
||||
#endif /* __STM32F4_DISCOVERY_SDIO_SD_H */
|
||||
#endif // _SDIO_SD_H_
|
||||
/**
|
||||
* @}
|
||||
*/
|
||||
|
|
|
@ -26,8 +26,8 @@
|
|||
*/
|
||||
|
||||
/* Define to prevent recursive inclusion -------------------------------------*/
|
||||
#ifndef __USB_CONF__H__
|
||||
#define __USB_CONF__H__
|
||||
#ifndef _USB_CONF_H_
|
||||
#define _USB_CONF_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
|
||||
|
||||
#endif //__USB_CONF__H__
|
||||
#endif // _USB_CONF_H_
|
||||
|
||||
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
|
||||
|
||||
|
|
|
@ -26,8 +26,8 @@
|
|||
*/
|
||||
|
||||
/* Define to prevent recursive inclusion -------------------------------------*/
|
||||
#ifndef __USBD_CONF__H__
|
||||
#define __USBD_CONF__H__
|
||||
#ifndef _USBD_CONF_H_
|
||||
#define _USBD_CONF_H_
|
||||
|
||||
/* Includes ------------------------------------------------------------------*/
|
||||
#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_FOPS VCP_fops
|
||||
|
||||
#endif //__USBD_CONF__H__
|
||||
#endif // _USBD_CONF_H_
|
||||
|
||||
|
||||
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
|
||||
|
|
|
@ -27,8 +27,8 @@
|
|||
|
||||
/* Define to prevent recursive inclusion -------------------------------------*/
|
||||
|
||||
#ifndef __USB_DESC_H
|
||||
#define __USB_DESC_H
|
||||
#ifndef _USBD_DESC_H_
|
||||
#define _USBD_DESC_H_
|
||||
|
||||
/* Includes ------------------------------------------------------------------*/
|
||||
#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_
|
||||
|
||||
/**
|
||||
* @}
|
||||
|
|
|
@ -35,8 +35,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef board_mega2560_h
|
||||
#define board_mega2560_h
|
||||
#ifndef _BOARD_MEGA2560_H_
|
||||
#define _BOARD_MEGA2560_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)
|
||||
#endif
|
||||
|
||||
#endif
|
||||
#endif // _BOARD_MEGA2560_H_
|
||||
|
|
|
@ -34,8 +34,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef simpgmspace_h
|
||||
#define simpgmspace_h
|
||||
#ifndef _SIMPGMSPACE_H_
|
||||
#define _SIMPGMSPACE_H_
|
||||
|
||||
extern int g_snapshot_idx;
|
||||
|
||||
|
@ -453,4 +453,4 @@ extern char simuSdDirectory[1024];
|
|||
#define sd_card_ready() (true)
|
||||
#define sdMounted() (true)
|
||||
|
||||
#endif
|
||||
#endif // _SIMPGMSPACE_H_
|
||||
|
|
|
@ -31,8 +31,8 @@
|
|||
/* Generated by : AT91 SW Application Group */
|
||||
/* Generated on : 2009-10-26 */
|
||||
|
||||
#ifndef AT91SAM3S_H
|
||||
#define AT91SAM3S_H
|
||||
#ifndef _AT91SAM3S2_H_
|
||||
#define _AT91SAM3S2_H_
|
||||
|
||||
/** \addtogroup AT91SAM3S_definitions AT91SAM3S definitions
|
||||
This file defines all structures and symbols for AT91SAM3S:
|
||||
|
@ -7013,4 +7013,4 @@ typedef struct {
|
|||
|
||||
/*@}*/
|
||||
|
||||
#endif /* AT91SAM3S_H */
|
||||
#endif // _AT91SAM3S2_H_
|
||||
|
|
|
@ -31,8 +31,8 @@
|
|||
/* Generated by : AT91 SW Application Group */
|
||||
/* Generated on : 2009-10-26 */
|
||||
|
||||
#ifndef AT91SAM3S_H
|
||||
#define AT91SAM3S_H
|
||||
#ifndef _AT91SAM3S4_H_
|
||||
#define _AT91SAM3S4_H_
|
||||
|
||||
/** \addtogroup AT91SAM3S_definitions AT91SAM3S definitions
|
||||
This file defines all structures and symbols for AT91SAM3S:
|
||||
|
@ -7116,4 +7116,4 @@ typedef struct {
|
|||
|
||||
/*@}*/
|
||||
|
||||
#endif /* AT91SAM3S_H */
|
||||
#endif // _AT91SAM3S4_H_
|
||||
|
|
|
@ -45,8 +45,8 @@
|
|||
///
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
#ifndef MEDIA_H
|
||||
#define MEDIA_H
|
||||
#ifndef _MEDIA_H_
|
||||
#define _MEDIA_H_
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
// Definitions
|
||||
|
@ -284,5 +284,5 @@ static inline void MED_Handler(Media *media)
|
|||
|
||||
extern void MED_HandleAll(Media *medias, unsigned char numMedias);
|
||||
|
||||
#endif // _MEDIA_H
|
||||
#endif // _MEDIA_H_
|
||||
|
||||
|
|
|
@ -36,8 +36,8 @@
|
|||
|
||||
// TODO merge this file with board_sky9x.h
|
||||
|
||||
#ifndef board_h
|
||||
#define board_h
|
||||
#ifndef _BOARD_H_
|
||||
#define _BOARD_H_
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
|
@ -650,4 +650,4 @@ struct t_serial_tx
|
|||
volatile uint16_t ready ;
|
||||
};
|
||||
|
||||
#endif
|
||||
#endif // _BOARD_H_
|
||||
|
|
|
@ -34,8 +34,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef board_sky9x_h
|
||||
#define board_sky9x_h
|
||||
#ifndef _BOARD_SKY9X_H_
|
||||
#define _BOARD_SKY9X_H_
|
||||
|
||||
#include <stdio.h>
|
||||
#include "board.h"
|
||||
|
@ -308,4 +308,4 @@ void telemetryTransmitBuffer(uint8_t * buffer, uint32_t size);
|
|||
void serial2TelemetryInit(unsigned int protocol);
|
||||
bool telemetrySecondPortReceive(uint8_t & data);
|
||||
|
||||
#endif
|
||||
#endif // _BOARD_SKY9X_H_
|
||||
|
|
|
@ -39,8 +39,8 @@
|
|||
/// -# For misc, see "AT91SAM3S4 - Misc".
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
#ifndef CHIP_H
|
||||
#define CHIP_H
|
||||
#ifndef _CHIP_H_
|
||||
#define _CHIP_H_
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
// Headers
|
||||
|
@ -126,5 +126,5 @@
|
|||
|
||||
//Misc
|
||||
|
||||
#endif //#ifndef CHIP_H
|
||||
#endif // _CHIP_H_
|
||||
|
||||
|
|
|
@ -21,8 +21,8 @@
|
|||
*
|
||||
******************************************************************************/
|
||||
|
||||
#ifndef __CM3_CORE_H__
|
||||
#define __CM3_CORE_H__
|
||||
#ifndef _CORE_CM3_H_
|
||||
#define _CORE_CM3_H_
|
||||
|
||||
/** @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 */
|
||||
|
||||
#endif /* __CM3_CORE_H__ */
|
||||
#endif // _CORE_CM3_H_
|
||||
|
||||
/*lint -restore */
|
||||
|
|
|
@ -39,5 +39,5 @@ void AspiData(u8 Para_data);
|
|||
}
|
||||
#endif
|
||||
|
||||
#endif
|
||||
#endif // _ASPI_H_
|
||||
|
||||
|
|
|
@ -400,4 +400,4 @@ void usbJoystickUpdate(void);
|
|||
extern uint8_t currentTrainerMode;
|
||||
void checkTrainerSettings(void);
|
||||
|
||||
#endif
|
||||
#endif // _BOARD_TARANIS_H_
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef _HAL_
|
||||
#define _HAL_
|
||||
#ifndef _HAL_H_
|
||||
#define _HAL_H_
|
||||
|
||||
// Keys
|
||||
#define KEYS_GPIO_REG_MENU GPIOD->IDR
|
||||
|
@ -567,4 +567,4 @@
|
|||
#define TIMER_2MHz_APB1Periph RCC_APB1Periph_TIM7
|
||||
#define TIMER_2MHz_TIMER TIM7
|
||||
|
||||
#endif
|
||||
#endif // _HAL_H_
|
||||
|
|
|
@ -26,8 +26,8 @@
|
|||
*/
|
||||
|
||||
/* Define to prevent recursive inclusion -------------------------------------*/
|
||||
#ifndef __USB_CONF__H__
|
||||
#define __USB_CONF__H__
|
||||
#ifndef _USB_CONF_H_
|
||||
#define _USB_CONF_H_
|
||||
|
||||
#if defined(REV9E)
|
||||
#include "STM32F4xx_DSP_StdPeriph_Lib_V1.4.0/Libraries/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h"
|
||||
|
@ -169,7 +169,7 @@
|
|||
#endif /* __CC_ARM */
|
||||
#endif
|
||||
|
||||
#endif //__USB_CONF__H__
|
||||
#endif // _USB_CONF_H_
|
||||
|
||||
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
|
||||
|
||||
|
|
|
@ -26,8 +26,8 @@
|
|||
*/
|
||||
|
||||
/* Define to prevent recursive inclusion -------------------------------------*/
|
||||
#ifndef __USBD_CONF__H__
|
||||
#define __USBD_CONF__H__
|
||||
#ifndef _USBD_CONF_H_
|
||||
#define _USBD_CONF_H_
|
||||
|
||||
/* Includes ------------------------------------------------------------------*/
|
||||
#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_FOPS VCP_fops
|
||||
|
||||
#endif //__USBD_CONF__H__
|
||||
#endif // _USBD_CONF_H_
|
||||
|
||||
|
||||
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
|
||||
|
|
|
@ -27,8 +27,8 @@
|
|||
|
||||
/* Define to prevent recursive inclusion -------------------------------------*/
|
||||
|
||||
#ifndef __USB_DESC_H
|
||||
#define __USB_DESC_H
|
||||
#ifndef _USBD_DESC_H_
|
||||
#define _USBD_DESC_H_
|
||||
|
||||
/* Includes ------------------------------------------------------------------*/
|
||||
#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_
|
||||
|
||||
/**
|
||||
* @}
|
||||
|
|
|
@ -34,10 +34,10 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef ardupilot_h
|
||||
#define ardupilot_h
|
||||
#ifndef _ARDUPILOT_H_
|
||||
#define _ARDUPILOT_H_
|
||||
void ARDUPILOT_Init(void);
|
||||
void ARDUPILOT_EnableRXD (void);
|
||||
void menuTelemetryArduPilot(uint8_t event);
|
||||
#endif
|
||||
#endif // _ARDUPILOT_H_
|
||||
|
||||
|
|
|
@ -34,8 +34,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef FRSKY_H
|
||||
#define FRSKY_H
|
||||
#ifndef _FRSKY_H_
|
||||
#define _FRSKY_H_
|
||||
|
||||
#include <inttypes.h>
|
||||
|
||||
|
@ -569,4 +569,4 @@ void processSerialData(uint8_t data);
|
|||
#define MODEL_TELEMETRY_PROTOCOL() g_model.telemetryProtocol
|
||||
#endif
|
||||
|
||||
#endif
|
||||
#endif // _FRSKY_H_
|
||||
|
|
|
@ -34,8 +34,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef jeti_h
|
||||
#define jeti_h
|
||||
#ifndef _JETI_H_
|
||||
#define _JETI_H_
|
||||
|
||||
#define JETI_KEY_LEFT 0x70
|
||||
#define JETI_KEY_RIGHT 0xe0
|
||||
|
@ -52,5 +52,5 @@ void JETI_DisableTXD (void);
|
|||
void telemetryInterrupt10ms();
|
||||
void menuTelemetryJeti(uint8_t event);
|
||||
|
||||
#endif
|
||||
#endif // _JETI_H_
|
||||
|
||||
|
|
|
@ -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);
|
||||
#endif
|
||||
|
||||
#endif
|
||||
#endif // _MAVLINK_H_
|
||||
|
||||
|
|
|
@ -34,12 +34,12 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef nmea_h
|
||||
#define nmea_h
|
||||
#ifndef _NMEA_H_
|
||||
#define _NMEA_H_
|
||||
|
||||
void NMEA_Init(void);
|
||||
void NMEA_EnableRXD (void);
|
||||
void menuTelemetryNMEA(uint8_t event);
|
||||
|
||||
#endif
|
||||
#endif // _NMEA_H_
|
||||
|
||||
|
|
|
@ -34,8 +34,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef TELEMETRY_H
|
||||
#define TELEMETRY_H
|
||||
#ifndef _TELEMETRY_H_
|
||||
#define _TELEMETRY_H_
|
||||
|
||||
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_SPEED_UNIT(unit) ((unit) >= UNIT_KTS && (unit) <= UNIT_MPH)
|
||||
|
||||
#endif
|
||||
#endif // _TELEMETRY_H_
|
||||
|
|
|
@ -53,8 +53,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef TEMPLATES_H_
|
||||
#define TEMPLATES_H_
|
||||
#ifndef _TEMPLATES_H_
|
||||
#define _TEMPLATES_H_
|
||||
|
||||
#include <inttypes.h>
|
||||
|
||||
|
@ -92,6 +92,6 @@ void clearMixes();
|
|||
void clearCurves();
|
||||
void applyTemplate(uint8_t idx);
|
||||
|
||||
#endif //TEMPLATES_H
|
||||
#endif // _TEMPLATES_H_
|
||||
|
||||
|
||||
|
|
|
@ -80,4 +80,4 @@ void timerSet(int idx, int val);
|
|||
|
||||
void evalTimers(int16_t throttle, uint8_t tick10ms);
|
||||
|
||||
#endif
|
||||
#endif // _TIMERS_H_
|
||||
|
|
|
@ -34,8 +34,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef translations_h
|
||||
#define translations_h
|
||||
#ifndef _TRANSLATIONS_H_
|
||||
#define _TRANSLATIONS_H_
|
||||
|
||||
#if defined(TRANSLATIONS_FR)
|
||||
#include "translations/fr.h"
|
||||
|
@ -974,4 +974,4 @@ extern const pm_char STR_BLCOLOR[];
|
|||
#define CHR_HOUR TR_CHR_HOUR
|
||||
#define CHR_INPUT TR_CHR_INPUT
|
||||
|
||||
#endif
|
||||
#endif // _TRANSLATIONS_H_
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue