00001 /* ************************************************************************************************ 00002 * 00003 * Copyright (C) 2008-2009 00004 * Martin Kornfeld (alias: el07b502), Email: el07b502@technikum-wien.at 00005 * 00006 * ************************************************************************************************ 00007 * 00008 * @file bluetooth.h 00009 * @brief This is the header file for all bluetooth sepcific functions<br/> 00010 * 00011 * It handles all bluetooth configurations and resets.<br/> 00012 * 00013 ************************************************************************************************* */ 00014 00015 #ifndef BLUETOOTH_H 00016 #define BLUETOOTH_H 00017 00018 extern const char configure[205]; 00019 00020 /* This function is used to reset the bluetooth device */ 00021 void bt_device_reset(void); 00022 00023 /* This function is used to configure the bluetooth device with specific settings */ 00024 void bt_device_config(void); 00025 00026 #endif
1.5.8