Mirror of CollapseOS
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

8 lines
296B

  1. ( fuse access. read/write one byte at a time )
  2. : aspfl@ ( -- lfuse ) 0 0 0 0x50 _cmd ;
  3. : aspfh@ ( -- hfuse ) 0 0 0x08 0x58 _cmd ;
  4. : aspfe@ ( -- efuse ) 0 0 0x00 0x58 _cmd ;
  5. : aspfl! ( lfuse -- ) 0 0xa0 0xac _cmd ;
  6. : aspfh! ( hfuse -- ) 0 0xa8 0xac _cmd ;
  7. : aspfe! ( efuse -- ) 0 0xa4 0xac _cmd ;