Advertisement
z3ntu

notes.txt

Oct 28th, 2017
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. // echo numbers into the kmsg
  2. i=0; while true; do echo $i > /dev/kmsg; i=$((i+1)); sleep 0.1; done
  3.  
  4. // lk panel dsi command structure
  5. struct panel_cmd {
  6. char dlen;
  7. char zero; // always(?) 0x00
  8. char dtype;
  9. char c_zero; // always(?) 0xC0
  10. char[] payload; // the values after the amount specified in dlen is notated with 0xFF
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement