feat(nodes) : setting folder construction
This commit is contained in:
@@ -2,6 +2,6 @@
|
|||||||
|
|
||||||
cmake_minimum_required(VERSION 3.20.0)
|
cmake_minimum_required(VERSION 3.20.0)
|
||||||
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
||||||
project(blinky)
|
project(plein_de_eeeeeeeeeeee)
|
||||||
|
|
||||||
target_sources(app PRIVATE src/main.c)
|
target_sources(app PRIVATE src/main.c src/window_status.c src/window_status.h src/thermometer.c src/thermometer.h src/hygrometer.c src/hygrometer.h src/co2_level.c src/co2_level.h src/supervisor.c src/supervisor.h src/ble_advertiser.c src/ble_advertiser.h)
|
||||||
|
|||||||
0
nodes/src/ble_advertiser.c
Normal file
0
nodes/src/ble_advertiser.c
Normal file
4
nodes/src/ble_advertiser.h
Normal file
4
nodes/src/ble_advertiser.h
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
#ifndef BLE_ADVERTISER_H
|
||||||
|
#define BLE_ADVERTISER_H
|
||||||
|
|
||||||
|
#endif //BLE_ADVERTISER_H
|
||||||
9
nodes/src/co2_level.c
Normal file
9
nodes/src/co2_level.c
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
#include "co2_level.h"
|
||||||
|
|
||||||
|
enum error_code co2_lvl_init(){
|
||||||
|
return success;
|
||||||
|
}
|
||||||
|
|
||||||
|
int co2_lvl_get_value(){
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
9
nodes/src/co2_level.h
Normal file
9
nodes/src/co2_level.h
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
#ifndef CO2_LEVEL_H
|
||||||
|
#define CO2_LEVEL_H
|
||||||
|
|
||||||
|
#include "error_code.h"
|
||||||
|
|
||||||
|
enum error_code co2_lvl_init();
|
||||||
|
int co2_lvl_get_value();
|
||||||
|
|
||||||
|
#endif //CO2_LEVEL_H
|
||||||
9
nodes/src/error_code.h
Normal file
9
nodes/src/error_code.h
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
#ifndef ERROR_CODE_H
|
||||||
|
#define ERROR_CODE_H
|
||||||
|
|
||||||
|
enum error_code{
|
||||||
|
success = 0,
|
||||||
|
error_code_last, // iteration purpose
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif //ERROR_CODE_H
|
||||||
9
nodes/src/hygrometer.c
Normal file
9
nodes/src/hygrometer.c
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
#include "hygrometer.h"
|
||||||
|
|
||||||
|
enum error_code hygro_init(){
|
||||||
|
return success;
|
||||||
|
}
|
||||||
|
|
||||||
|
int hygro_get_value(){
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
9
nodes/src/hygrometer.h
Normal file
9
nodes/src/hygrometer.h
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
#ifndef HYGROMETER_H
|
||||||
|
#define HYGROMETER_H
|
||||||
|
|
||||||
|
#include "error_code.h"
|
||||||
|
|
||||||
|
enum error_code hygro_init();
|
||||||
|
int hygro_get_value();
|
||||||
|
|
||||||
|
#endif //HYGROMETER_H
|
||||||
@@ -8,41 +8,9 @@
|
|||||||
#include <zephyr/kernel.h>
|
#include <zephyr/kernel.h>
|
||||||
#include <zephyr/drivers/gpio.h>
|
#include <zephyr/drivers/gpio.h>
|
||||||
|
|
||||||
/* 1000 msec = 1 sec */
|
int main(void){
|
||||||
#define SLEEP_TIME_MS 10000
|
supervisor_init();
|
||||||
|
supervisor_run();
|
||||||
/* The devicetree node identifier for the "led0" alias. */
|
// should never come here
|
||||||
#define LED0_NODE DT_ALIAS(led0)
|
|
||||||
|
|
||||||
/*
|
|
||||||
* A build error on this line means your board is unsupported.
|
|
||||||
* See the sample documentation for information on how to fix this.
|
|
||||||
*/
|
|
||||||
static const struct gpio_dt_spec led = GPIO_DT_SPEC_GET(LED0_NODE, gpios);
|
|
||||||
|
|
||||||
int main(void)
|
|
||||||
{
|
|
||||||
int ret;
|
|
||||||
bool led_state = true;
|
|
||||||
|
|
||||||
if (!gpio_is_ready_dt(&led)) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
ret = gpio_pin_configure_dt(&led, GPIO_OUTPUT_ACTIVE);
|
|
||||||
if (ret < 0) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
while (1) {
|
|
||||||
ret = gpio_pin_toggle_dt(&led);
|
|
||||||
if (ret < 0) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
led_state = !led_state;
|
|
||||||
printf("LED state: %s\n", led_state ? "ON" : "OFF");
|
|
||||||
k_msleep(SLEEP_TIME_MS);
|
|
||||||
}
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|||||||
10
nodes/src/supervisor.c
Normal file
10
nodes/src/supervisor.c
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
#include "supervisor.h"
|
||||||
|
|
||||||
|
enum error_code supervisor_init(){
|
||||||
|
return success;
|
||||||
|
}
|
||||||
|
|
||||||
|
enum error_code supervisor_run(){
|
||||||
|
while(1);
|
||||||
|
return success;
|
||||||
|
}
|
||||||
14
nodes/src/supervisor.h
Normal file
14
nodes/src/supervisor.h
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
#ifndef SUPERVISOR_H
|
||||||
|
#define SUPERVISOR_H
|
||||||
|
|
||||||
|
#include "error_code.h"
|
||||||
|
|
||||||
|
#include "window_status.h"
|
||||||
|
#include "thermometer.h"
|
||||||
|
#include "hygrometer.h"
|
||||||
|
#include "co2_level.h"
|
||||||
|
|
||||||
|
enum error_code supervisor_init();
|
||||||
|
enum error_code supervisor_run();
|
||||||
|
|
||||||
|
#endif //SUPERVISOR_H
|
||||||
9
nodes/src/thermometer.c
Normal file
9
nodes/src/thermometer.c
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
#include "thermometer.h"
|
||||||
|
|
||||||
|
enum error_code thermo_init(){
|
||||||
|
return success;
|
||||||
|
}
|
||||||
|
|
||||||
|
int thermo_get_value(){
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
9
nodes/src/thermometer.h
Normal file
9
nodes/src/thermometer.h
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
#ifndef THERMOMETER_H
|
||||||
|
#define THERMOMETER_H
|
||||||
|
|
||||||
|
#include "error_code.h"
|
||||||
|
|
||||||
|
enum error_code thermo_init();
|
||||||
|
int thermo_get_value();
|
||||||
|
|
||||||
|
#endif //THERMOMETER_H
|
||||||
9
nodes/src/window_status.c
Normal file
9
nodes/src/window_status.c
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
#include "window_status.h"
|
||||||
|
|
||||||
|
enum error_code window_init(){
|
||||||
|
return success;
|
||||||
|
}
|
||||||
|
|
||||||
|
int window_get_value(){
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
9
nodes/src/window_status.h
Normal file
9
nodes/src/window_status.h
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
#ifndef WINDOW_STATUS_H
|
||||||
|
#define WINDOW_STATUS_H
|
||||||
|
|
||||||
|
#include "error_code.h"
|
||||||
|
|
||||||
|
enum error_code window_init();
|
||||||
|
int window_get_value();
|
||||||
|
|
||||||
|
#endif //WINDOW_STATUS_
|
||||||
Reference in New Issue
Block a user