⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 adc.h

📁 nRF24E1多发单收
💻 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

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -