Doxygen stuff.
[goodfet] / firmware / include / chipcon.h
index 3289c7e..ece1e53 100644 (file)
@@ -1,4 +1,7 @@
-//These high-level functions are implemented in chipcon.c.
+/*! \file chipcon.h
+  \author Travis Goodspeed
+  \brief Chipcon application functions.
+*/
 
 
 //! Erase a chipcon chip.
@@ -18,12 +21,12 @@ void cc_set_hw_brkpnt(unsigned short);
 //! Debug an instruction, for remote use.
 void cc_debug_instr(unsigned char);
 //!Read a byte of code memory.
-unsigned char peekcodebyte(unsigned long adr);
+unsigned char cc_peekcodebyte(unsigned long adr);
 //!Read a byte of data memory.
-unsigned char peekdatabyte(unsigned int adr);
+unsigned char cc_peekdatabyte(unsigned int adr);
 //! Set a byte of data memory.
-unsigned char pokedatabyte(unsigned int adr,
-                          unsigned char val);
+unsigned char cc_pokedatabyte(unsigned int adr,
+                             unsigned char val);
 //! Debug an instruction, for local use.
 unsigned char cc_debug(unsigned char len,
                       unsigned char a,