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,18 +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 READ_ADDR 0x1F000
#define NBYTES 1024
#include "config.h"
void main(void) {
nvmType_t type=0;
nvmErr_t err;
uint32_t buf[NBYTES/4];
uint32_t buf[READ_NBYTES/4];
uint32_t i;
uart_init(INC, MOD);
@ -34,12 +28,12 @@ void main(void) {
nvm_setsvar(0);
err = nvm_read(gNvmInternalInterface_c, type, (uint8_t *)buf, READ_ADDR, NBYTES);
err = nvm_read(gNvmInternalInterface_c, type, (uint8_t *)buf, READ_ADDR, READ_NBYTES);
puts("nvm_read returned: 0x");
put_hex(err);
puts("\n\r");
for(i=0; i<NBYTES/4; i++) {
for(i=0; i<READ_NBYTES/4; i++) {
puts("0x");
put_hex32(buf[i]);
puts("\n\r");