aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Embedded_SW/Embedded/Common/Utilities
diff options
context:
space:
mode:
authorShlomo Hecht <shlomo@twine-s.com>2020-02-07 13:03:22 +0200
committerShlomo Hecht <shlomo@twine-s.com>2020-02-07 13:03:22 +0200
commit589bffe306db793987c17cd46f1dcac81f47bdcb (patch)
tree6c9239daec4d1ba7d2a644a9c7153230d51f0691 /Software/Embedded_SW/Embedded/Common/Utilities
parentaf1c7bd1b6122c1387fe6e2749f9847f4be84b16 (diff)
downloadTango-589bffe306db793987c17cd46f1dcac81f47bdcb.tar.gz
Tango-589bffe306db793987c17cd46f1dcac81f47bdcb.zip
remove some warnings
Diffstat (limited to 'Software/Embedded_SW/Embedded/Common/Utilities')
-rw-r--r--Software/Embedded_SW/Embedded/Common/Utilities/idle_task.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Software/Embedded_SW/Embedded/Common/Utilities/idle_task.c b/Software/Embedded_SW/Embedded/Common/Utilities/idle_task.c
index 8d1040ea2..9a1de790e 100644
--- a/Software/Embedded_SW/Embedded/Common/Utilities/idle_task.c
+++ b/Software/Embedded_SW/Embedded/Common/Utilities/idle_task.c
@@ -202,9 +202,9 @@ uint32_t unload_max_count=0;
void IdleTaskGetLoadTable (uint32_t *aBuffer)
{
int i;
- for (i=0;i<100;i++)
- aBuffer[i] = idle_load_table[i];
- //memcpy (aBuffer,idle_load_table,sizeof(idle_load_table));
+ //for (i=0;i<100;i++)
+ // aBuffer[i] = idle_load_table[i];
+ memcpy (aBuffer,idle_load_table,sizeof(idle_load_table));
}
uint32_t MillisecCounter = 0;
uint32_t ControlCounter = 0;