Advertisement
Guest User

Untitled

a guest
Mar 15th, 2023
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.30 KB | None | 0 0
  1.        
  2. # volatile variables in pruss shared memory
  3. class SharedVars( Structure ):
  4.     _fields_ = [
  5.         ( 'abort_file', uint32 ),
  6.         ( 'abort_line', uint32 ),
  7.         ( 'ridx',       uint16 ),
  8.         ( 'cycle_limit', uint16),
  9.         ( 'time_limit', uint16),
  10.         ( 'signal_length', uint16),
  11.         ( 'signal', uint16*2000)
  12.     ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement