adds missing ehrenberg devices

This commit is contained in:
2024-06-10 12:21:20 +02:00
parent 231366cc94
commit daa1ed184d
6 changed files with 28 additions and 5 deletions

View File

@ -0,0 +1,6 @@
#ifndef _BSP_CAM_H
#define _BSP_CAM_H
#include "gen/camera.h"
#endif /* _BSP_CAM_H */

View File

@ -0,0 +1,6 @@
#ifndef _BSP_DMA_H
#define _BSP_DMA_H
#include "gen/simpledma.h"
#endif /* _BSP_DMA_H */

View File

@ -0,0 +1,6 @@
#ifndef _BSP_IIS_H
#define _BSP_IIS_H
#include "gen/i2s.h"
#endif /* _BSP_IIS_H */

View File

@ -2,13 +2,10 @@
#define _BSP_INTERRUPT_H
#include <stdint.h>
#include "gen/Apb3IrqCtrl.h"
#define irq_t apb3irqctrl_t
#define irq_t void*
inline void irq_init(irq_t* reg){
set_irq_masksReg(reg, 0);
set_irq_pendingsReg(reg, 0xff);
inline void irq_init(volatile irq_t* reg){
}
#endif /* _BSP_INTERRUPT_H */