mirror of
https://github.com/rene-dev/stmbl.git
synced 2024-12-20 15:42:18 +00:00
28 lines
602 B
C
28 lines
602 B
C
#include "hal.h"
|
|
|
|
HAL_COMP(not);
|
|
|
|
HAL_PIN(in);
|
|
HAL_PIN(out);
|
|
|
|
static void rt_func(float period, volatile void *ctx_ptr, volatile hal_pin_inst_t *pin_ptr) {
|
|
struct not_pin_ctx_t *pins = (struct not_pin_ctx_t *)pin_ptr;
|
|
|
|
PIN(out) = PIN(in) <= 0.0;
|
|
}
|
|
|
|
const hal_comp_t not_comp_struct = {
|
|
.name = "not",
|
|
.nrt = 0,
|
|
.rt = rt_func,
|
|
.frt = 0,
|
|
.nrt_init = 0,
|
|
.hw_init = 0,
|
|
.rt_start = 0,
|
|
.frt_start = 0,
|
|
.rt_stop = 0,
|
|
.frt_stop = 0,
|
|
.ctx_size = 0,
|
|
.pin_count = sizeof(struct not_pin_ctx_t) / sizeof(struct hal_pin_inst_t),
|
|
};
|