From f2ac117d1a6294f7dac283d466f34dc76ce72251 Mon Sep 17 00:00:00 2001 From: travisutk Date: Fri, 6 Nov 2009 07:43:09 +0000 Subject: [PATCH] Chipcon locking now works by clearing all of Info flash. This will also write-protect the chip. git-svn-id: https://svn.code.sf.net/p/goodfet/code/trunk@225 12e2690d-a6be-4b82-a7b7-67c4a43b65c8 --- firmware/apps/chipcon/chipcon.c | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/firmware/apps/chipcon/chipcon.c b/firmware/apps/chipcon/chipcon.c index 00182f0..ccacb95 100644 --- a/firmware/apps/chipcon/chipcon.c +++ b/firmware/apps/chipcon/chipcon.c @@ -278,13 +278,16 @@ void cc_wr_config(unsigned char config){ //! Locks the chip. void cc_lockchip(){ + register i; + debugstr("Locking chip."); cc_wr_config(1);//Select Info Flash if(!(cc_rd_config()&1)) debugstr("Config forgotten!"); //Clear config page. - cc_pokedatabyte(0xf000,0); + for(i=0;i<2048;i++) + cc_pokedatabyte(0xf000+i,0); cc_write_flash_page(0); if(cc_peekcodebyte(0)) debugstr("Failed to clear info flash byte."); @@ -559,21 +562,25 @@ unsigned char cc_peekdatabyte(unsigned int adr){ cc_debug(3, 0x90, hb, lb); //MOVX A, @DPTR //Must be 2, perhaps for clocking? - toret=cc_debug(3, 0xE0, 0, 0); - return toret; + return cc_debug(3, 0xE0, 0, 0); } //! Fetch a byte of IRAM. u8 cc_peekirambyte(u8 adr){ + //CLR A + cc_debug(2, 0xE4, 0, 0); //MOV A, #iram return cc_debug(3, 0xE5, adr, 0); } //! Write a byte of IRAM. u8 cc_pokeirambyte(u8 adr, u8 val){ + //CLR A + cc_debug(2, 0xE4, 0, 0); //MOV #iram, #val return cc_debug(3, 0x75, adr, val); + //return cc_debug(3, 0x75, val, adr); } -- 2.20.1