?? app_ex_main.h
字號:
/******************************************************************************
Filename: app_ex_main.h
Target: cc2430
Revised: 16/12-2005
Revision: 1.0
Description:
This file is the header file for the complete application with the menu system.
******************************************************************************/
// when defined each of the sub application is "mounted" in the system.
#ifndef APP_EX_MAIN_H
#define APP_EX_MAIN_H
#include "hal.h"
// ID for each of the sub application
enum app {RF_TEST, ADC_CONV, ADC_SERIES, STOP_WATCH, UART, CLOCKMODES,
RANDOM, AES, FLASH, DMA, POWER, TIMER_INT, EXTERNAL_INT};
#define NBR_OF_APPS 13
// Prototypes
BOOL stopApplication(void);
void haltApplication(void);
void haltApplicationWithLED(void);
INT8U ScanKey(void);
void keyinit(void);
void dummyInterrupt(void);
#endif
/*
Template for application init.
#ifdef COMPLETE_APPLICATION
void int_ext_init(APPLICATION *a){
a->menuText = "Menu text";
a->description = "Descriptin";
a->main_func = app_main;
a->interrupts[INUM_x] = x_IRQ;
}
#endif
*/
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -