replaces ehrenberg with new implementations

This commit is contained in:
2025-01-06 20:15:44 +01:00
parent f419b1a3e6
commit 9ff9727bd6
25 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#ifndef _DEVICES_GPIO_H
#define _DEVICES_GPIO_H
#include <stdint.h>
#include "gen/gpio.h"
inline void gpio_init(volatile gpio_t* reg) {
set_gpio_write(reg, 0);
set_gpio_writeEnable(reg, 0);
}
#endif /* _DEVICES_GPIO_H */