diff options
author | Keith Packard <keithp@keithp.com> | 2009-03-25 00:29:29 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2009-03-25 00:29:29 -0700 |
commit | 006124529b243c7657a94312d2c868a82878d8bb (patch) | |
tree | 0767ca5d6a1c698e92bfd93d505366b1fcf17cb4 | |
parent | 5049acd3d1ae42304513f667f55a2ddffa4c685a (diff) |
Send more interesting text
-rw-r--r-- | target/serial/serial.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/target/serial/serial.c b/target/serial/serial.c index 589452c0..42705d71 100644 --- a/target/serial/serial.c +++ b/target/serial/serial.c @@ -236,7 +236,8 @@ main () spi_init(); for (;;) { - usart_out_byte('A'); + for (i = 0; i < sizeof(string) - 1; i++) + usart_out_byte(string[i]); delay(5); P1 ^= 2; } |