12 lines
172 B
C
12 lines
172 B
C
#pragma once
|
|
|
|
#include <inttypes.h>
|
|
|
|
#define ADC_M 1024
|
|
extern int16_t adc_buf[ADC_M];
|
|
extern int16_t pADC;
|
|
extern uint8_t fADC;
|
|
|
|
void adc0_Init();
|
|
int16_t adc0_TR_DATA();
|