blob: 3d388f8a7937e71db30a78bcdc2f978a56a65f00 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#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(void);
#endif
|