CT-Lab_11_ModularCodingAndL.../project/lib_debug_with_src/read.c

7 lines
93 B
C
Raw Normal View History

2022-12-16 08:38:09 +01:00
#include "read.h"
uint8_t read8(uint32_t from)
{
return (*((volatile uint8_t*)from));
}