20 lines
347 B
C
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;
|
|
}
|