/* 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 plus 1 by auto 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\7188xcl.lib Hordware: 7188XC with RTC [27/Oct/2005] compiled by Liam */ #include #include #include #include #include #include"..\..\LIB\7188xc.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++; } }