-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbasic.h
41 lines (30 loc) · 780 Bytes
/
basic.h
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
// GPL v3 : copyright Yann GOUY
//
//
// BASIC : goal and description
//
// this package provides basic services :
//
// - wait : frames treatment blocked for the given amount of time
// - RAM read/write : access to RAM memory
// - FLASH read/write : access to FLASH memory
// - EEPROM read/write : access to EEPROM memory
// - container : handling of container frames
//
#ifndef __BASIC_H__
#define __BASIC_H__
#include "fr_cmdes.h"
//----------------------------------------
// public defines
//
//----------------------------------------
// public types
//
//----------------------------------------
// public functions
//
// basic module initialization
extern void BSC_init(void);
// basic module computing function
extern void BSC_run(void);
#endif // __BASIC_H__