PHiLIP
app_access.h
1 /*
2  * Copyright 2020 Kevin Weiss for HAW Hamburg
3  *
4  * This file is subject to the terms and conditions of the MIT License. See the
5  * file LICENSE in the top level directory for more details.
6  * SPDX-License-Identifier: MIT
7  */
8 
9 #ifndef APP_ACCESS_H_
10 #define APP_ACCESS_H_
11 
12 #include <stdint.h>
13 
14 extern const uint8_t MAP_T_ACCESS[];
15 
16 #define PERIPH_ACCESS 0x02
17 #define IF_ACCESS 0x01
18 
19 #endif
const uint8_t MAP_T_ACCESS[]
Definition: PHiLIP_access.c:18