cancel
Showing results for 
Search instead for 
Did you mean: 

How to read from internal flash stm32f3 (to used a HAL library UM1786)?

oleg_sidorovich_1981
Associate II

I have erased, have written (with HAL) but a can't read with HAL.

1 ACCEPTED SOLUTION

Accepted Solutions

It is just memory within the processors addressable space, just use memcpy() or pointers like you would with any other memory.

Tips, buy me a coffee, or three.. PayPal Venmo Up vote any posts that you find helpful, it shows what's working..

View solution in original post

3 REPLIES 3

It is just memory within the processors addressable space, just use memcpy() or pointers like you would with any other memory.

Tips, buy me a coffee, or three.. PayPal Venmo Up vote any posts that you find helpful, it shows what's working..
oleg_sidorovich_1981
Associate II

Exactly !! Thank.

S.Ma
Principal

uint8_t * pu8 = 0xtheadresstoreadas32bit;

uint8_t byte = *pu8;