This repository has been archived on 2024-11-23. You can view files and clone it, but cannot push or open issues or pull requests.
SSTV-Decoder/include/adc.h

12 lines
172 B
C
Raw Normal View History

2023-04-27 13:26:10 +08:00
#pragma once
#include <inttypes.h>
2023-04-28 01:59:54 +08:00
#define ADC_M 1024
extern int16_t adc_buf[ADC_M];
extern int16_t pADC;
extern uint8_t fADC;
2023-04-27 23:36:16 +08:00
void adc0_Init();
int16_t adc0_TR_DATA();