blob: e781f5b432dac77d106f4dc3e5e423fa07472e76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "../copyright"
#ifndef _OBC1_H_
#define _OBC1_H_
uint8_t GetOBC1(uint16_t Address);
void SetOBC1(uint8_t Byte, uint16_t Address);
uint8_t* GetMemPointerOBC1(uint32_t Address);
void ResetOBC1();
#endif
|