Project

General

Profile

Revision 891

Moved comments to headers. That was painful.

View differences:

dragonfly_lib.c
49 49
 * Initialize the motors and ORB. 
50 50
 **/
51 51

  
52
/**
53
 * @defgroup dragonfly Dragonfly
54
 * @brief General Dragonfly Functions
55
 * General functions for the dragonfly. Include
56
 * dragonfly_lib.h to access these functions.
57
 *
58
 * @{
59
 **/
60 52

  
61
/**
62
 * Initializes the components specified by config. Will turn on interrupts
63
 * 	automatically.
64
 *
65
 * 	@param config The subsystems that you wish to turn on. Check dragonfly_lib.h for
66
 * 			valid values.
67
 * 
68
 * @see analog_init, usb_init, xbee_init, buzzer_init,
69
 * bom_init, orb_init, motors_init, lcd_init
70
 **/
71 53
void dragonfly_init(int config) {
72 54
  sei();
73 55

  
......
105 87
  _delay_ms(1);
106 88
}
107 89

  
108

  
109
/** @} **/ //end defgroup
110

  

Also available in: Unified diff