Index: sources/device/DeviceController.cpp =================================================================== diff -u -r7fb3037f90ac302238f618243a137bee1653ca2b -rcf51c19d82d667644d7f70eaa521b43f908c7068 --- sources/device/DeviceController.cpp (.../DeviceController.cpp) (revision 7fb3037f90ac302238f618243a137bee1653ca2b) +++ sources/device/DeviceController.cpp (.../DeviceController.cpp) (revision cf51c19d82d667644d7f70eaa521b43f908c7068) @@ -797,11 +797,23 @@ checkConfugurationMountReady(); } +/*! + * \brief DeviceController::onPOSTEthernetData + * \details Collects the ethernet mac address + * when it is ready after the POST is done for the Ethernet + * \param vMacAddress - The Ethernet MAC address + */ void DeviceController::onPOSTEthernetData(const QString &vMacAddress) { _macEthernet = vMacAddress; emit didPOSTEthernetData (vMacAddress); } +/*! + * \brief DeviceController::onPOSTWirelessData + * \details Collects the wireless mac address + * when it is ready after the POST is done for the Wireless connection + * \param vMacAddress - The Wireless MAC address + */ void DeviceController::onPOSTWirelessData(const QString &vMacAddress) { _macWireless = vMacAddress; @@ -812,11 +824,23 @@ emit didPOSTWirelessData (vMacAddress); } +/*! + * \brief DeviceController::onPOSTBluetoothData + * \details Collects the bluetooth mac address + * when it is ready after the POST is done for the Bluetooth + * \param vMacAddress - The Bluetooth MAC address + */ void DeviceController::onPOSTBluetoothData(const QString &vMacAddress) { _macBluetooth = vMacAddress; emit didPOSTBluetoothData (vMacAddress); } +/*! + * \brief DeviceController::onPOSTCloudSyncData + * \details Collects the CloudSync Network Address + * when it is ready after the POST is done for the CloudSync + * \param vNetAddress - *** Not defined yet and is a placeholder for later use *** + */ void DeviceController::onPOSTCloudSyncData(const QString &vNetAddress) { _netCloudSync = vNetAddress; emit didPOSTCloudSyncData (vNetAddress); @@ -992,7 +1016,7 @@ } /*! - * \brief DeviceController::onProcessFactoryResetExitCode + * \brief DeviceController::onProcessUSBMountExitCode * \param vExitCode * \param vStatus */