| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- // Copyright 2021 IOsetting <iosetting(at)outlook.com>
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- /**
- * STC8H3K64S2
- * AGrnd -> GND
- * AVcc -> VCC
- * AVref -> VCC
- * Vcc -> VCC
- * Gnd -> GND
- * ADC1 -> Test voltage
- *
- * STC8H1K08
- * AVref -> VCC
- * Vcc -> VCC
- * Gnd -> GND
- * ADC1 -> Test voltage
- */
- #include "fw_hal.h"
- uint8_t pos;
- uint16_t res[2];
- INTERRUPT(ADC_Routine, EXTI_VectADC)
- {
- ADC_ClearInterrupt();
- res[pos] = ADC_RESL;
- res[pos] |= (ADC_RES & 0x0F) << 8;
- // Restart ADC for continuous sampling
- pos = (pos+1) & 0x1;
- if (pos == 0)
- {
- /**
- * Uncomment these lines in high speed ADC
- GPIO_P1_SetMode(GPIO_Pin_1, GPIO_Mode_InOut_OD);
- GPIO_P1_SetMode(GPIO_Pin_1, GPIO_Mode_Input_HIP);
- */
- ADC_SetChannel(0x01);
- }
- else
- {
- /**
- * Uncomment these lines in high speed ADC
- GPIO_P1_SetMode(GPIO_Pin_2, GPIO_Mode_InOut_OD);
- GPIO_P1_SetMode(GPIO_Pin_2, GPIO_Mode_Input_HIP);
- */
- ADC_SetChannel(0x02);
- }
- ADC_Start();
- }
- void main(void)
- {
- SYS_SetClock();
- // For debug print
- UART1_Config8bitUart(UART1_BaudSource_Timer2, HAL_State_ON, 115200);
- // Channel: ADC1
- ADC_SetChannel(0x01);
- // ADC Clock = SYSCLK / 2 / (1+15) = SYSCLK / 32
- ADC_SetClockPrescaler(0x0F);
- // Right alignment, high 2-bit in ADC_RES, low 8-bit in ADC_RESL
- ADC_SetResultAlignmentRight();
- // Enable interrupts
- EXTI_Global_SetIntState(HAL_State_ON);
- EXTI_ADC_SetIntState(HAL_State_ON);
- // Turn on ADC power
- ADC_SetPowerState(HAL_State_ON);
- // Set ADC1(P1.1), ADC2(P1.2) HIP
- GPIO_P1_SetMode(GPIO_Pin_1|GPIO_Pin_2, GPIO_Mode_Input_HIP);
- // Start ADC
- ADC_Start();
- while(1)
- {
- UART1_TxString("Result: ");
- UART1_TxHex(res[0] >> 8);
- UART1_TxHex(res[0] & 0xFF);
- UART1_TxChar(' ');
- UART1_TxHex(res[1] >> 8);
- UART1_TxHex(res[1] & 0xFF);
- UART1_TxString("\r\n");
- SYS_Delay(100);
- }
- }
|