?? adc.h
字號:
// adc.h/*********************************************************************** * * Author: Greg Hunter * Company: UTS * Filenames: adc.h, adc.c * Date: 2007/9/6 * File Version: 0.01 * Other Files Required: * Tools Used: Micro-IDE -> 2.16m * SDCC C Compiler -> 2.5 * * Devices Supported: * nRF24E1 * *********************************************************************** * * Description: * Routines to configure and run the analog to digital converters * **********************************************************************/#ifndef Adc_h#define Adc_h// C API for adc.cvoid AdcInit(void); // Initialising routine. 10 bit mode.unsigned int AdcRead(unsigned char channel); //return adc reading at channel "channel"#endif
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -