place all the config into config.h

This commit is contained in:
Mariano Alvira 2010-02-26 14:21:46 -05:00
parent 87cd9c7a36
commit 64824b4ebc
5 changed files with 39 additions and 26 deletions

View file

@ -2,20 +2,12 @@
#include <board.h>
#include "tests.h"
/* INC = 767; MOD = 9999 works: 115200 @ 24 MHz 16 bit sample */
#define INC 767
#define MOD 9999
#define NBYTES 8
#define WRITE_ADDR 0x1e000
#define WRITEVAL0 0xdeadbeef
#define WRITEVAL1 0xdeadbeef
#include "config.h"
void main(void) {
nvmType_t type=0;
nvmErr_t err;
uint32_t buf[NBYTES/4];
uint32_t buf[WRITE_NBYTES/4];
uint32_t i;
uart_init(INC, MOD);
@ -43,24 +35,24 @@ void main(void) {
put_hex(err);
puts("\n\r");
err = nvm_write(gNvmInternalInterface_c, type, (uint8_t *)buf, WRITE_ADDR, NBYTES);
err = nvm_write(gNvmInternalInterface_c, type, (uint8_t *)buf, WRITE_ADDR, WRITE_NBYTES);
puts("nvm_write returned: 0x");
put_hex(err);
puts("\n\r");
puts("writing\n\r");
for(i=0; i<NBYTES/4; i++) {
for(i=0; i<WRITE_NBYTES/4; i++) {
puts("0x");
put_hex32(buf[i]);
puts("\n\r");
buf[i] = 0x00000000; /* clear buf for the read */
}
err = nvm_read(gNvmInternalInterface_c, type, (uint8_t *)buf, WRITE_ADDR, NBYTES);
err = nvm_read(gNvmInternalInterface_c, type, (uint8_t *)buf, WRITE_ADDR, WRITE_NBYTES);
puts("nvm_read returned: 0x");
put_hex(err);
puts("\n\r");
puts("reading\n\r");
for(i=0; i<NBYTES/4; i++) {
for(i=0; i<WRITE_NBYTES/4; i++) {
puts("0x");
put_hex32(buf[i]);
puts("\n\r");