[tuxdroid-svn] r451 - daemon/trunk/libs
Status: Beta
Brought to you by:
ks156
From: neimad <c2m...@c2...> - 2007-06-24 17:36:35
|
Author: neimad Date: 2007-06-24 19:36:34 +0200 (Sun, 24 Jun 2007) New Revision: 451 Modified: daemon/trunk/libs/USBDaemon_status_table.h Log: * Fixed comments: 80-column rule. Modified: daemon/trunk/libs/USBDaemon_status_table.h =================================================================== --- daemon/trunk/libs/USBDaemon_status_table.h 2007-06-24 17:34:08 UTC (rev 450) +++ daemon/trunk/libs/USBDaemon_status_table.h 2007-06-24 17:36:34 UTC (rev 451) @@ -257,10 +257,19 @@ extern author_t hw_author[4]; extern unsigned char sound_flash_count; -struct connection_status_t { - bool usb_request_f; /** usb request flag set when a USB command is issued and reset when the answer has been received in the status; only used for functions that should get an answer */ - uint16_t tux_id; /** id of the tux which is currently connected or was last connected */ - uint8_t wifi_channel; /** wifi channel that the RF modules will avoid; set to 0 to disable this function */ +struct connection_status_t +{ + /** USB request flag set when a USB command is issued and reset + when the answer has been received in the status; only used for + functions that should get an answer */ + bool usb_request_f; + + /** Id of the tux which is currently connected or was last connected */ + uint16_t tux_id; + + /** Wifi channel that the RF modules will avoid; set to 0 to + disable this function */ + uint8_t wifi_channel; }; extern struct connection_status_t connection_status; |