feat: adc

This commit is contained in:
liuyihui 2023-04-27 13:26:10 +08:00
parent 0afbab47b7
commit 99b6474f3e
3 changed files with 34 additions and 3 deletions

6
include/adc.h Normal file
View File

@ -0,0 +1,6 @@
#pragma once
#include <inttypes.h>
void ADC0_Init();
int16_t ADC0_TR_DATA();

25
src/adc.c Normal file
View File

@ -0,0 +1,25 @@
#include "adc.h"
#include "derivative.h"
void ADC0_Init() {
// Enable ADC0 and PORTE clock
SIM->SCGC6 |= SIM_SCGC6_ADC0_MASK;
SIM->SCGC5 |= SIM_SCGC5_PORTE_MASK;
// USE AD0 (ADC0_SE4a)
PORTE->PCR[21] |= PORT_PCR_MUX(0x0);
ADC0->CFG1 = ADC_CFG1_ADLSMP_MASK // Sample time 0 = Short, 1 = Long
| ADC_CFG1_MODE(0x01); // Conversion mode 00 = 8-bit, 01 = 12-bit, 10 = 10-bit, 11 = 16-bit
ADC0->SC3 = ADC_SC3_ADCO_MASK // Continuous Conversion if AVGE = 1
| ADC_SC3_AVGE_MASK // Hardware average
| ADC_SC3_AVGS(0x01); // Hardware average 00 = 4 samples, 01 = 8, 10 = 16, 11 = 32
ADC0->SC1[0] = ADC_SC1_ADCH(0b00100); // Input channel select, AD4a is selected as input
}
int16_t ADC0_TR_DATA() {
while (!(ADC0->SC1[0] & ADC_SC1_COCO_MASK)) asm("nop");
int16_t ADC_Result = ADC0->R[0];
ADC0->SC1[0] &= ~ADC_SC1_COCO_MASK;
return ADC_Result;
}

View File

@ -2,9 +2,9 @@
#include "systick.h"
#include "tftlcd.h"
uint16_t PEN_COLOR = 0x0000; // 画笔颜色
uint16_t BACK_COLOR = 0xFFFF; // 背景颜色
uint16_t DeviceCode; // 设备模式
uint16_t PEN_COLOR = BLACK; // 画笔颜色
uint16_t BACK_COLOR = WHITE; // 背景颜色
uint16_t DeviceCode; // 设备模式
void LCD_RESET() {
LCD_RST_CLR;