/* Nvram-w.c: 1. Input a value and write to NVRAM. 2. The value will write to the address of NVRAM from 0 to 30. 3. The value will automatically increase by 1 when it is werited to next address. Compiler: BC++ 3.1, Turbo C ++ 1.01(3.01) (free from http://community.borland.com/museum) Compile mode: Large Project: Nvram-w.c ..\..\lib\7188e.lib Hordware: 7188E [05/Dec/2006] by Liam [July,13,2011] by Nicholas */ #include #include #include #include #include #include "..\..\LIB\7188e.h" void main(void) { int addr=0; int data,x,y; unsigned char cmd[80], result[80]; Print("PLease insert a valume to write to NVRAM: "); Scanf("%d",&data); while(addr<31) { DelayMs(10); WriteNVRAM(addr, data); Print("\n\rWrite the valume %d to RVRAM address %d", data, addr); addr=addr++,data=data++; } }