Mirror of CollapseOS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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 ;