Index: firmware/source/sys_main.c =================================================================== diff -u -r01892698468068bb97a80a84c96a6d7c5d6fde9b -r3b3713c0d5445b83f339021972728ff58bd3e6e5 --- firmware/source/sys_main.c (.../sys_main.c) (revision 01892698468068bb97a80a84c96a6d7c5d6fde9b) +++ firmware/source/sys_main.c (.../sys_main.c) (revision 3b3713c0d5445b83f339021972728ff58bd3e6e5) @@ -110,7 +110,6 @@ initProcessor(); // Configure processor initSoftware(); // Initialize software modules - initHardware(); // Configure external hardware initTasks(); // Setup and start the scheduled tasks // Start task background (will not return) @@ -154,9 +153,10 @@ /************************************************************************* * @brief initSoftware - * The initSoftware function calls all software module initialize functions. + * The initSoftware function calls all software unit initialization functions + * to initialize and configure the TD application. * @details Inputs: none - * @details Outputs: All modules initialized. + * @details Outputs: All software units initialized. * @return none *************************************************************************/ static void initSoftware( void ) @@ -191,17 +191,6 @@ } /************************************************************************* - * @brief initHardware - * The initHardware function initializes and configures external hardware. - * @details Inputs: none - * @details Outputs: External hardware initialized and configured. - * @return none - *************************************************************************/ -static void initHardware( void ) -{ -} - -/************************************************************************* * @brief initTasks * The initTasks function sets up and starts the scheduled tasks. * @details Inputs: none