Guest User

Untitled

a guest
Dec 12th, 2018
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. // volatile because of the DMA filling the array automatically
  2. // base address is 0x80000000
  3. volatile float example_two[100][2] = (volatile float *)0x80000000;
  4.  
  5. // volatile because of the DMA filling the array automatically
  6. // base address is 0x80000000
  7. volatile float *example_one = (volatile float *)0x80000000;
Add Comment
Please, Sign In to add comment