PHiLIP
sys.h
Go to the documentation of this file.
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 
21 #ifndef SYS_H_
22 #define SYS_H_
23 
24 /* Function prototypes ********************************************************/
32 void init_sys(map_t *reg);
33 
43 error_t commit_sys();
44 
50 void update_tick();
51 
52 #endif /* SYS_H_ */
53 
error_t commit_sys()
Commits the system registers and executes operations.
Definition: sys.c:82
void update_tick()
Updates the tick count to the app reg.
Definition: sys.c:114
void init_sys(map_t *reg)
Initializes system registers.
Definition: sys.c:47
The memory map.
Definition: PHiLIP_typedef.h:340