1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| /**
| * @file dev_list.h
| * @author your name (you@domain.com)
| * @brief
| * @version 0.1
| * @date 2023-04-05
| *
| * @copyright Copyright (c) 2023
| *
| */
| #ifndef __DEV_LIST_H__
| #define __DEV_LIST_H__
|
| #include "Ems_object.h"
|
| extern eio_object_t *led3;
| extern eio_object_t *led4;
|
| #endif /* __DEV_LIST_H__ */
|
| /* ----------------------------- end of file -------------------------------- */
|
|