summaryrefslogtreecommitdiff
path: root/nuttx/arch/arm/src/stm32/stm32_waste.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-04-15 16:20:25 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-04-15 16:20:25 +0000
commit3a3fe9efb1e3f0fe6a756b8e4d2fa48d5564137b (patch)
tree13d2c82c982b760b250741f7167faf0d509ecbc4 /nuttx/arch/arm/src/stm32/stm32_waste.c
parentf1893cbaf513c7f0fbca77240fc59707ad039734 (diff)
downloadpx4-nuttx-3a3fe9efb1e3f0fe6a756b8e4d2fa48d5564137b.tar.gz
px4-nuttx-3a3fe9efb1e3f0fe6a756b8e4d2fa48d5564137b.tar.bz2
px4-nuttx-3a3fe9efb1e3f0fe6a756b8e4d2fa48d5564137b.zip
Add code changes from Uros
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3507 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/arch/arm/src/stm32/stm32_waste.c')
-rwxr-xr-xnuttx/arch/arm/src/stm32/stm32_waste.c29
1 files changed, 1 insertions, 28 deletions
diff --git a/nuttx/arch/arm/src/stm32/stm32_waste.c b/nuttx/arch/arm/src/stm32/stm32_waste.c
index 057e2eb37..a680b8b0f 100755
--- a/nuttx/arch/arm/src/stm32/stm32_waste.c
+++ b/nuttx/arch/arm/src/stm32/stm32_waste.c
@@ -39,46 +39,19 @@
#include <nuttx/config.h>
#include <stdint.h>
-
-/****************************************************************************
- * Pre-processor Definitions
- ****************************************************************************/
+#include "stm32_waste.h"
/****************************************************************************
* Private Data
****************************************************************************/
-/****************************************************************************
- * Public Data
- ****************************************************************************/
-
uint32_t idle_wastecounter = 0;
/****************************************************************************
- * Private Functions
- ****************************************************************************/
-
-/****************************************************************************
* Public Functions
****************************************************************************/
-/****************************************************************************
- * Name: up_waste
- *
- * Description:
- * up_waste() is the logic that will be executed when portions of kernel
- * or user-app is polling some register or similar, waiting for desired
- * status. This time is wasted away. This function offers a measure of
- * badly written piece of software or some undesired behavior.
- *
- * At the same time this function adds to some IDLE time which portion
- * cannot be used for other purposes (yet).
- *
- ****************************************************************************/
-
void up_waste(void)
{
idle_wastecounter++;
}
-
-