mirror of
https://gitea.osmocom.org/sim-card/simtrace2.git
synced 2026-03-17 21:58:33 +03:00
This way we can easily check with 'diff' for differences in our code and Atmel softpack. Also, this layout is more suitable for building various different firmware images (e.g. factory-test, dfu-loader, main application) for a variety of different boards (simtrace, owhw, qmod).
6 lines
156 B
C
6 lines
156 B
C
#pragma once
|
|
|
|
void i2c_pin_init(void);
|
|
int eeprom_write_byte(uint8_t slave, uint8_t addr, uint8_t byte);
|
|
int eeprom_read_byte(uint8_t slave, uint8_t addr);
|