Files
T2-start-2025/C/t-oer-prc2-cbdb-main/Assignments/Watch/product/watch_i2c.c
Rens Pastoor 11b391b8a1 sync
2025-05-27 22:41:46 +02:00

16 lines
384 B
C

#include "watch_i2c.h"
#include "watch_device_simulator.h"
// leave resource_detector.h as last include!
#include "resource_detector.h"
int watch_i2c_write_byte(uint8_t address, uint8_t value)
{
return watch_device_simulator_write_byte(address, value);
}
int watch_i2c_read_byte(uint8_t address, uint8_t* value)
{
return watch_device_simulator_read_byte(address, value);
}