commit-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Commit-gnuradio] r6754 - gnuradio/branches/developers/matt/u2f/firmware


From: eb
Subject: [Commit-gnuradio] r6754 - gnuradio/branches/developers/matt/u2f/firmware
Date: Tue, 30 Oct 2007 23:00:50 -0600 (MDT)

Author: eb
Date: 2007-10-30 23:00:49 -0600 (Tue, 30 Oct 2007)
New Revision: 6754

Modified:
   gnuradio/branches/developers/matt/u2f/firmware/Makefile
   gnuradio/branches/developers/matt/u2f/firmware/hal_io.h
Log:
cleanup

Modified: gnuradio/branches/developers/matt/u2f/firmware/Makefile
===================================================================
--- gnuradio/branches/developers/matt/u2f/firmware/Makefile     2007-10-31 
04:50:54 UTC (rev 6753)
+++ gnuradio/branches/developers/matt/u2f/firmware/Makefile     2007-10-31 
05:00:49 UTC (rev 6754)
@@ -26,7 +26,8 @@
        ibs_tx_test.rom ibs_rx_test.rom \
        test_phy_comm.rom
 
-DUMPS = test1.dump eth_test.dump timer_test.dump ibs_tx_test.dump 
ibs_rx_test.dump
+DUMPS = $(ROMS:.rom=.dump)
+
 LIBS = libu2fw.a
 
 all: $(ROMS) $(DUMPS)

Modified: gnuradio/branches/developers/matt/u2f/firmware/hal_io.h
===================================================================
--- gnuradio/branches/developers/matt/u2f/firmware/hal_io.h     2007-10-31 
04:50:54 UTC (rev 6753)
+++ gnuradio/branches/developers/matt/u2f/firmware/hal_io.h     2007-10-31 
05:00:49 UTC (rev 6754)
@@ -19,6 +19,9 @@
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
 
+void hal_io_init(void);
+void hal_finish();
+
 void hal_putc(unsigned char s);
 void hal_putc_nl(unsigned char s);     // adds \n
 void hal_puts(const char *);
@@ -29,11 +32,10 @@
 #define hal_puthex hal_puthex32
 void hal_puthex_nl(unsigned long x);
 void hal_newline();
-void hal_finish();
 
 
-void hal_gpio_set_rx_modes(int high_bitno, int low_bitno, int mode);
-void hal_gpio_set_tx_modes(int high_bitno, int low_bitno, int mode);
+void hal_gpio_set_rx_mode(int high_bitno, int low_bitno, int mode);
+void hal_gpio_set_tx_mode(int high_bitno, int low_bitno, int mode);
 
 void hal_gpio_set_tx(int value, int mask);
 void hal_gpio_set_rx(int value, int mask);





reply via email to

[Prev in Thread] Current Thread [Next in Thread]