Changeset 8936
- Timestamp:
- 07/18/08 11:38:14
- Files:
-
- usrp2/trunk/firmware/apps (modified) (1 prop)
- usrp2/trunk/firmware/apps/Makefile.am (modified) (1 diff)
- usrp2/trunk/firmware/apps/echo.c (added)
- usrp2/trunk/firmware/lib/hal_io.c (modified) (2 diffs)
- usrp2/trunk/firmware/lib/stdio.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
usrp2/trunk/firmware/apps
- Property svn:ignore changed from *-stamp *.a *.bin *.dump *.log *.rom *.map .deps Makefile Makefile.in aclocal.m4 autom4te.cache blink_leds blink_leds2 build compile config.h config.h.in config.log config.status configure depcomp eth_test gen_eth_packets ibs_rx_test ibs_tx_test install-sh libtool ltmain.sh missing py-compile rcv_eth_packets run_tests.sh stamp-h1 test1 test_phy_comm timer_test buf_ram_test buf_ram_zero hello test_printf test_spi test_i2c gen_pause_frames test_serdes rx_only tx_only tx_standalone tx_drop tx_drop2 tx_drop_rate_limited test_lsdac test_lsadc read_dbids test_db_spi ramp_lsdac eth_to_serdes serdes_to_dsp sd_gentest sd_bounce can_i_sub tx_only_v2 rx_only_v2 txrx to *-stamp *.a *.bin *.dump *.log *.rom *.map .deps Makefile Makefile.in aclocal.m4 autom4te.cache blink_leds blink_leds2 build compile config.h config.h.in config.log config.status configure depcomp echo eth_test gen_eth_packets ibs_rx_test ibs_tx_test install-sh libtool ltmain.sh missing py-compile rcv_eth_packets run_tests.sh stamp-h1 test1 test_phy_comm timer_test buf_ram_test buf_ram_zero hello test_printf test_spi test_i2c gen_pause_frames test_serdes rx_only tx_only tx_standalone tx_drop tx_drop2 tx_drop_rate_limited test_lsdac test_lsadc read_dbids test_db_spi ramp_lsdac eth_to_serdes serdes_to_dsp sd_gentest sd_bounce can_i_sub tx_only_v2 rx_only_v2 txrx
usrp2/trunk/firmware/apps/Makefile.am
r8407 r8936 25 25 buf_ram_test \ 26 26 can_i_sub \ 27 echo \ 27 28 gen_eth_packets \ 28 29 hello \ usrp2/trunk/firmware/lib/hal_io.c
r8378 r8936 248 248 } 249 249 250 int 251 getchar(void) 252 { 253 return hal_uart_getc(); 254 } 255 250 256 #else // nop all i/o 251 257 … … 267 273 } 268 274 275 int 276 getchar(void) 277 { 278 return EOF; 279 } 280 269 281 #endif 270 282 usrp2/trunk/firmware/lib/stdio.h
r6968 r8936 34 34 int printf(const char *format, ...); 35 35 36 //int getchar(void);36 int getchar(void); 37 37 38 38 #endif /* INCLUDED_STDIO_H */
