BLE_TYQ_CH584M/APP/peripheral_main.c

264 lines
7.0 KiB
C
Raw Normal View History

2024-12-02 16:26:55 +08:00
#include "CONFIG.h"
#include "HAL.h"
#include "gattprofile.h"
#include "peripheral.h"
#include "bsp_adc.h"
2024-12-09 11:41:44 +08:00
#include "bsp_key.h"
#include "bsp_beep_led_emv.h"
2024-12-12 15:49:10 +08:00
#include "log.h"
#include "bsp_uart.h"
2024-12-13 18:14:02 +08:00
#include "bsp_i2c.h"
2024-12-15 14:30:06 +08:00
#include "bsp_iwdg.h"
#include "bsp_flash.h"
2024-12-16 21:26:43 +08:00
#include "bsp_valve.h"
2025-05-06 09:17:24 +08:00
#include "bsp_bat.h"
2024-12-12 15:49:10 +08:00
#undef LOG_ENABLE
#define LOG_ENABLE 1
2024-12-13 13:22:31 +08:00
#undef LOG_TAG
#define LOG_TAG "main"
2024-12-14 13:31:23 +08:00
__attribute__((aligned(4))) uint32_t MEM_BUF[BLE_MEMHEAP_SIZE / 4];
2024-12-02 16:26:55 +08:00
2024-12-17 14:51:12 +08:00
static uint8_t key_press_cnt = 0;
void app_task_handler(TeAppEvtType app_evt_type)
{
2024-12-17 14:51:12 +08:00
BSP_BlockSleep();
2025-05-21 10:30:46 +08:00
// BSP_BlockSleep();
// BSP_RequestBoost();
2025-02-21 14:38:41 +08:00
switch (app_evt_type)
{
2025-02-21 14:38:41 +08:00
case kKeyShort:
logDebug("button short press");
key_press_cnt++;
logDebug("key_press_cnt = %d", key_press_cnt);
2025-05-21 10:30:46 +08:00
if (key_press_cnt == 1)
2024-12-16 21:26:43 +08:00
{
2025-02-21 14:38:41 +08:00
logDebug("LED显示状态");
2024-12-17 14:51:12 +08:00
// tmos_set_event(led_task_id, LED_SHOW_START_EVT);
BSP_BlockSleep();
2025-05-21 10:30:46 +08:00
// BSP_RequestBoost();
DelayMs(3);
2024-12-17 14:51:12 +08:00
ShowLed();
2025-05-21 10:30:46 +08:00
// tmos_stop_task(led_task_id, LED_SHOW_ONCE_EVT);
// tmos_start_task(led_task_id, LED_SHOW_ONCE_EVT, 1000);
2024-12-16 21:26:43 +08:00
}
2025-05-21 10:30:46 +08:00
else if (key_press_cnt == 2)
2024-12-16 21:26:43 +08:00
{
2025-05-21 10:30:46 +08:00
if (gValveData.switch_status == kClosed)
{
logDebug("kClosed-->kOpened");
// tmos_set_event(led_task_id, LED_SHOW_START_EVT);
gValveData.switch_status = kOpened;
BSP_BlockSleep();
// BSP_RequestBoost();
DelayMs(3);
ShowLed();
// tmos_stop_task(led_task_id, LED_SHOW_ONCE_EVT);
// tmos_start_task(led_task_id, LED_SHOW_ONCE_EVT, 1000);
}
else if (gValveData.switch_status != kClosed)
2025-02-21 14:38:41 +08:00
{
logDebug("kOpened-->kClosed");
gValveData.switch_status = kClosed;
tmos_set_event(vavle_task_id, VAVLE_CLOSE_START_EVT);
// tmos_set_event(led_task_id, LED_SHOW_START_EVT);
BSP_BlockSleep();
2025-05-21 10:30:46 +08:00
// BSP_RequestBoost();
DelayMs(3);
2025-02-21 14:38:41 +08:00
ShowLed();
// tmos_stop_task(led_task_id, LED_SHOW_ONCE_EVT);
// tmos_start_task(led_task_id, LED_SHOW_ONCE_EVT, 1000);
}
2024-12-16 21:26:43 +08:00
}
2025-02-21 14:38:41 +08:00
break;
2024-12-16 21:26:43 +08:00
2025-02-21 14:38:41 +08:00
case kKeyLong:
logDebug("button long press");
2025-02-21 14:38:41 +08:00
break;
case kKeyRelease:
// BSP_KEY_EnterLowpower();
// DelayMs(10);
key_press_cnt = 0;
// BSP_RequestSleep();
// tmos_set_event(led_task_id, LED_SHOW_END_EVT);
2024-12-17 14:51:12 +08:00
2025-02-21 14:38:41 +08:00
LED_ALL_OFF_DEINIT;
BEEP_OFF_DEINIT;
2024-12-17 14:51:12 +08:00
2025-02-21 14:38:41 +08:00
BSP_NoNeedBoost();
BSP_RequestSleep();
2024-12-17 14:51:12 +08:00
2025-02-21 14:38:41 +08:00
logDebug("gpio relase;BSP_RequestSleep");
2025-02-21 14:38:41 +08:00
break;
default:
break;
}
}
2025-02-21 14:38:41 +08:00
2024-12-02 16:26:55 +08:00
/*********************************************************************
* @fn Main_Circulation
*
2024-12-13 13:22:31 +08:00
* @brief
2024-12-02 16:26:55 +08:00
*
* @return none
*/
__HIGH_CODE
__attribute__((noinline)) void Main_Circulation()
2024-12-02 16:26:55 +08:00
{
2024-12-02 17:34:56 +08:00
while (1)
2024-12-02 16:26:55 +08:00
{
TMOS_SystemProcess();
2024-12-14 16:00:58 +08:00
KEY_ProcessLoop();
BSP_UART1_TxLoop();
2025-05-16 11:39:29 +08:00
// FEED_IWDG();
2024-12-02 16:26:55 +08:00
}
}
2024-12-15 14:30:06 +08:00
// https://www.cnblogs.com/gscw/p/18530905
// 在连接间隔和广播间隔到来时,会进入该回调,可以在回调函数加上其他执行逻辑代码,如喂狗等。
2024-12-13 18:14:02 +08:00
void BLE_AdvertiseEventCB(uint32_t timeUs)
{
2025-02-22 18:05:33 +08:00
FEED_IWDG();
2024-12-14 18:40:24 +08:00
logDebug("BLE_AdvertiseEventCB");
2024-12-13 18:14:02 +08:00
}
2024-12-15 14:30:06 +08:00
void BLE_ConnectEventCB(uint32_t timeUs)
{
2025-02-22 18:05:33 +08:00
FEED_IWDG();
2024-12-15 14:30:06 +08:00
logDebug("BLE_ConnectEventCB");
}
2024-12-02 16:26:55 +08:00
/*********************************************************************
* @fn main
*
2024-12-13 13:22:31 +08:00
* @brief
2024-12-02 16:26:55 +08:00
*
* @return none
*/
int main(void)
{
2024-12-02 17:34:56 +08:00
#if (defined(DCDC_ENABLE)) && (DCDC_ENABLE == TRUE)
2024-12-02 16:26:55 +08:00
PWR_DCDCCfg(ENABLE);
#endif
2025-02-21 14:38:41 +08:00
HSECFG_Capacitance(HSECap_18p);
SetSysClock(CLK_SOURCE_HSE_PLL_62_4MHz);
2024-12-08 11:29:48 +08:00
2024-12-02 17:34:56 +08:00
#if (defined(HAL_SLEEP)) && (HAL_SLEEP == TRUE)
2024-12-08 11:29:48 +08:00
GPIOA_ModeCfg(GPIO_Pin_All, GPIO_ModeIN_PD);
GPIOB_ModeCfg(GPIO_Pin_All, GPIO_ModeIN_PD);
#endif
#ifdef DEBUG
2025-05-08 16:31:56 +08:00
// 改成 4000000 波特率了
BSP_UART1_Init(4000000);
2024-12-02 16:26:55 +08:00
#endif
2025-05-21 10:30:46 +08:00
DelayMs(1000 * 1);
2025-04-13 23:18:47 +08:00
2025-05-21 10:30:46 +08:00
ShowRestartReason();
2025-02-22 17:22:49 +08:00
2025-05-21 10:30:46 +08:00
// log打印编译时间和编译日期
logDebug("Compile Time: %s %s", __DATE__, __TIME__);
2025-02-22 18:05:33 +08:00
logDebug("GetSysClock = %d Hz", GetSysClock());
logDebug("Start @ChipID=%02X\n", R8_CHIP_ID);
logError("中文测试 %2.2f", 123.456);
logDebug("%s\n", VER_LIB);
2025-05-21 10:30:46 +08:00
2025-02-22 18:05:33 +08:00
uint8_t MacAddr[6];
GetMACAddress(MacAddr);
// 手机APP显示是倒序的[5-0],不是[0-5]
logDebug("MacAddr: %02X:%02X:%02X:%02X:%02X:%02X", MacAddr[0], MacAddr[1], MacAddr[2], MacAddr[3], MacAddr[4], MacAddr[5]);
2024-12-13 18:14:02 +08:00
2025-05-21 10:30:46 +08:00
CH58x_BLEInit();
HAL_Init();
GAPRole_PeripheralInit();
Peripheral_Init();
2024-12-13 18:14:02 +08:00
2025-05-21 10:30:46 +08:00
BSP_FLASH_Init();
2025-02-22 18:05:33 +08:00
2025-05-21 10:30:46 +08:00
BSP_KEY_Init(app_task_handler);
BSP_BEEP_LED_EMV_Init();
GXHTC3C_Init();
2024-12-17 14:51:12 +08:00
BSP_ADC_Init();
2025-02-22 18:05:33 +08:00
BSP_VAVLE_Init();
2024-12-17 14:51:12 +08:00
BSP_BlockSleep();
BSP_RequestBoost();
2025-04-13 23:18:47 +08:00
DelayMs(10);
2024-12-17 14:51:12 +08:00
ShowLed();
2025-02-22 17:22:49 +08:00
BEEP_ON;
2024-12-17 14:51:12 +08:00
2025-04-13 23:18:47 +08:00
DelayMs(500 * 1);
2024-12-17 14:51:12 +08:00
2025-05-06 09:17:24 +08:00
// BSP_BAT_Init();
// tmos_set_event(Peripheral_TaskID, SBP_REPLY_CMD_EVT);
#if 0
// GPIOA_ModeCfg(GPIO_Pin_2, GPIO_ModeIN_Floating);
// TMR3功能引脚映射选择位
// 1TMR3_/PWM3_/CAP3_映射到PA[2]
R16_PIN_ALTERNATE |= (1 << 3);
logDebug("TMR3_CapInit 0");
TMR3_CapInit(FallEdge_To_FallEdge);
// (1 / 62.4MHz) * 2的26次方 = 0.01602564102564102564102564102564 us * 67108864 约等于 1.0754625641025641025641025641025 S
// TMR3_CAPTimeoutCfg(FREQ_SYS ); // 设置捕捉超时时间
TMR3_CAPTimeoutCfg(GetSysClock() / 100); // 设置捕捉超时时间 10ms
// TMR3_CAPTimeoutCfg(0x3FFFFFF); // 设置捕捉超时时间
TMR3_DMACfg(ENABLE, (uint16_t)(uint32_t)&CapBuf[0], (uint16_t)(uint32_t)&CapBuf[20], Mode_Single);
TMR3_ITCfg(ENABLE, TMR0_3_IT_DMA_END); // 开启DMA完成中断
PFIC_EnableIRQ(TMR3_IRQn);
logDebug("TMR3_CapInit");
while(capFlag == 0);
capFlag = 0;
for(uint8_t i = 0; i < 20; i++)
{
logDebug("%08ld ", CapBuf[i] & 0x1ffffff); // 26bit, 最高位表示 高电平还是低电平
uint16_t t = ((CapBuf[i] & 0x1ffffff) * 1.0f) / FREQ_SYS * 1000000;
uint16_t f = 1000000 / t;
logDebug("T = %04d us, f = %04d Hz", t, f);
BSP_UART1_TxLoop();
}
// DelayMs(1000 * 30);
#endif
2024-12-17 14:51:12 +08:00
LED_ALL_OFF_DEINIT;
BEEP_OFF_DEINIT;
BSP_NoNeedBoost();
BSP_RequestSleep();
2025-05-16 11:39:29 +08:00
IWDG_Init(IWDG_TIMEOUT_MS);
2025-04-13 23:18:47 +08:00
logDebug("123");
DelayMs(1000);
logDebug("456");
2024-12-17 14:51:12 +08:00
// 在连接间隔和广播间隔到来时,会进入回调中喂狗
// LL_AdvertiseEventRegister(BLE_AdvertiseEventCB);
// LL_ConnectEventRegister(BLE_ConnectEventCB);
2024-12-02 16:26:55 +08:00
Main_Circulation();
}
/******************************** endfile @ main ******************************/