* Updated NTC lookup * remove float compute from adc (as we dont use it) * Updated adc settings * Updated ADC Init * Custom max temp lookup * Mask Timer around changing timer rate * Use timer channels in sane order * Update IRQ.cpp * Remove ADC dummy wait on start/stop * Dont use ADC IRQ * Disable sampling delay * Update Setup.cpp * PinecilV2 disable ROM driver utils Always use our source * Force settings upgrade on PinecilV2 Fix forced settings upgrade on Pinecilv2 * Prevent ADC rollover * Update Setup.cpp * ADC cleanup * Rollover prevention * Measure tip temperature 2nd * Rebase Buffalo SDK to 1.4.5 (#1923) * Update bl702_adc.c * Update board.c * . * Update bl702_adc.c * Import updated hal_drv * Remove accidental dupe of stack in linker * First pass update BLE stack * Update ReleaseNotes * Update push.yml * Drop BT Audio which we dont use * . * Reformat * Update conn.c * Update hog.c
20 lines
494 B
C
20 lines
494 B
C
#ifndef __BL_IRQ_H__
|
|
#define __BL_IRQ_H__
|
|
|
|
|
|
#include "bl702_glb.h"
|
|
#include "risc-v/Core/Include/clic.h"
|
|
#include "risc-v/Core/Include/riscv_encoding.h"
|
|
|
|
|
|
void bl_irq_enable(unsigned int source);
|
|
void bl_irq_disable(unsigned int source);
|
|
void bl_irq_pending_set(unsigned int source);
|
|
void bl_irq_pending_clear(unsigned int source);
|
|
void bl_irq_register(int irqnum, void *handler);
|
|
void bl_irq_unregister(int irqnum, void *handler);
|
|
void bl_irq_handler_get(int irqnum, void **handler);
|
|
|
|
|
|
#endif
|