This repository has been archived on 2024-01-25. You can view files and clone it, but cannot push or open issues or pull requests.
SummerSchool2-Controller/306-controller_interface.X/app/factory/factory.h

63 lines
916 B
C
Raw Normal View History

/**
* @author R<EFBFBD>mi Heredero
* @version. 0.0.0
* @date August 2023
* @file factory.h
*/
#ifndef FACTORY_H
#define FACTORY_H
#include <stdint.h>
#include <stdbool.h>
2023-08-25 12:13:51 +00:00
#include "../car.h"
#include "../can_message.h"
#include "../../board/led/led.h"
#include "../../board/button/button.h"
#include "../../middleware/alive.h"
#include "../../middleware/can_interface.h"
2023-08-28 16:23:11 +00:00
#include "../../middleware/eeprom.h"
2023-08-30 18:22:44 +00:00
#include "../../middleware/blinker.h"
typedef struct {
LED l1_;
LED l2_;
LED l3_;
LED l4_;
LED l5_;
LED l6_;
LED l7_;
LED l8_;
2023-08-25 12:13:51 +00:00
2023-08-30 18:22:44 +00:00
BLINKER b1_;
ALIVE ALcontroller_;
ALIVE ALjoy_;
} Factory;
void Factory_init();
void Factory_build();
void Factory_start();
//these are global getters for our objects
LED* l1();
LED* l2();
LED* l3();
LED* l4();
LED* l5();
LED* l6();
LED* l7();
LED* l8();
2023-08-30 18:22:44 +00:00
BLINKER* b1();
ALIVE* ALcontroller();
ALIVE* ALjoy();
2023-08-25 12:13:51 +00:00
#endif