-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHALAL.hpp
More file actions
70 lines (54 loc) · 2.52 KB
/
HALAL.hpp
File metadata and controls
70 lines (54 loc) · 2.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#pragma once
#include "HALAL/Models/GPIO.hpp"
#include "HALAL/Models/Pin.hpp"
#include "HALAL/Models/DMA/DMA2.hpp"
#include "HALAL/Models/HALconfig/HALconfig.hpp"
#include "HALAL/Services/DigitalInputService/DigitalInputService.hpp"
#include "HALAL/Services/DigitalOutputService/DigitalOutputService.hpp"
#include "HALAL/Services/Flash/Flash.hpp"
#include "HALAL/Services/Flash/FlashTests/Flash_Test.hpp"
#include "HALAL/Services/ADC/ADC.hpp"
// To be implemented
// #include "HALAL/Services/PWM/DualPhasedPWM/DualPhasedPWM.hpp"
// #include "HALAL/Services/PWM/PhasedPWM/PhasedPWM.hpp"
#include "HALAL/Services/PWM/DualPWM.hpp"
#include "HALAL/Services/PWM/PWM.hpp"
#include "HALAL/Services/Time/RTC.hpp"
#include "HALAL/Services/Time/Scheduler.hpp"
#include "HALAL/Services/Time/TimerWrapper.hpp"
// #include "HALAL/Services/Encoder/Encoder.hpp"
#include "HALAL/Services/EXTI/EXTI.hpp"
#include "HALAL/Services/Encoder/Encoder.hpp"
// #include "HALAL/Services/InputCapture/InputCapture.hpp" // To be implemented
#include "HALAL/Services/Communication/FDCAN/FDCAN.hpp"
#include "HALAL/Services/Communication/I2C/I2C.hpp"
#include "HALAL/Models/SPI/SPI2.hpp"
#include "HALAL/Services/Communication/SPI/SPI.hpp"
#include "HALAL/Services/Communication/UART/UART.hpp"
#include "HALAL/Services/CORDIC/CORDIC.hpp"
#include "HALAL/Services/FMAC/FMAC.hpp"
#include "HALAL/Models/MPU.hpp"
#include "HALAL/Models/MPUManager/MPUManager.hpp"
#include "HALAL/Services/InfoWarning/InfoWarning.hpp"
#include "HALAL/Services/Watchdog/Watchdog.hpp"
#include "HALAL/Models/BoardID/BoardID.hpp"
#include "HALAL/Models/Concepts/Concepts.hpp"
#include "HALAL/Models/MDMA/MDMA.hpp"
#include "HALAL/Models/Packets/MdmaPacket.hpp"
#include "HALAL/Benchmarking_toolkit/DataWatchpointTrace/DataWatchpointTrace.hpp"
#include "HALAL/Services/DFSDM/DFSDM.hpp"
#include "HALAL/HardFault/HardfaultTrace.h"
#include "HALAL/Services/Communication/Ethernet/NewEthernet.hpp"
#ifdef STLIB_ETH
#include "HALAL/Models/Packets/ForwardOrder.hpp"
#include "HALAL/Models/Packets/Order.hpp"
#include "HALAL/Models/Packets/OrderProtocol.hpp"
#include "HALAL/Models/Packets/Packet.hpp"
#include "HALAL/Models/IPV4/IPV4.hpp"
#include "HALAL/Models/MAC/MAC.hpp"
#include "HALAL/Services/Communication/Ethernet/LWIP/Ethernet.hpp"
#include "HALAL/Services/Communication/Ethernet/LWIP/TCP/ServerSocket.hpp"
#include "HALAL/Services/Communication/Ethernet/LWIP/TCP/Socket.hpp"
#include "HALAL/Services/Communication/Ethernet/LWIP/UDP/DatagramSocket.hpp"
#include "HALAL/Services/Communication/SNTP/SNTP.hpp"
#endif