浏览代码

Merge pull request #430 from FrankBoesing/panic-temp

fix panic-temp power off
main
Paul Stoffregen 4 年前
父节点
当前提交
27e72eebc5
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 13 次插入0 次删除
  1. +13
    -0
      teensy4/tempmon.c

+ 13
- 0
teensy4/tempmon.c 查看文件

@@ -12,6 +12,14 @@ static uint32_t panicAlarmTemp = 90U;
static uint32_t s_hotTemp, s_hotCount, s_roomC_hotC;
static float s_hot_ROOM;

void Panic_Temp_isr(void) {
__disable_irq();
IOMUXC_GPR_GPR16 = 0x00000007;
SNVS_LPCR |= SNVS_LPCR_TOP; //Switch off now
asm volatile ("dsb":::"memory");
while (1) asm ("wfi");
}

FLASHMEM void tempmon_init(void)
{
// Notes:
@@ -50,6 +58,11 @@ FLASHMEM void tempmon_init(void)
//Start temp monitoring
TEMPMON_TEMPSENSE0 |= 0x2U; //starts temp monitoring

//PANIC shutdown:
NVIC_SET_PRIORITY(IRQ_TEMPERATURE_PANIC, 0);
attachInterruptVector(IRQ_TEMPERATURE_PANIC, &Panic_Temp_isr);
NVIC_ENABLE_IRQ(IRQ_TEMPERATURE_PANIC);
}



正在加载...
取消
保存