Files
MSE-PI-E2EEDA-Plein-de-eeee…/nodes/src/main.c
2026-06-04 21:01:42 +02:00

20 lines
347 B
C

/*
* Copyright (c) 2016 Intel Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <stdio.h>
#include <zephyr/kernel.h>
#include <zephyr/drivers/gpio.h>
#include "supervisor.h"
int main(void){
supervisor_init();
// todo : sohuld init fail, activate led ?
supervisor_run();
// should never come here
return 0;
}