aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Embedded_SW/Embedded/Common
diff options
context:
space:
mode:
authorAvi Levkovich <avi@twine-s.com>2020-10-19 14:16:58 +0300
committerAvi Levkovich <avi@twine-s.com>2020-10-19 14:16:58 +0300
commit4dd9e04cade78d1aa9b30d4164b2ce50b0938c77 (patch)
tree9a59577350b4821ff5746f8be9fe82fc7557fecb /Software/Embedded_SW/Embedded/Common
parent1cdac5261f96f1d5e01d18cbd833744d67d42db7 (diff)
parent0111d071d51d34d7bcbf9d7f487f1178414d11b3 (diff)
downloadTango-4dd9e04cade78d1aa9b30d4164b2ce50b0938c77.tar.gz
Tango-4dd9e04cade78d1aa9b30d4164b2ce50b0938c77.zip
merge
Diffstat (limited to 'Software/Embedded_SW/Embedded/Common')
-rw-r--r--Software/Embedded_SW/Embedded/Common/Utilities/idle_task.c4
-rw-r--r--Software/Embedded_SW/Embedded/Common/Utilities/ustdlib.c12
2 files changed, 8 insertions, 8 deletions
diff --git a/Software/Embedded_SW/Embedded/Common/Utilities/idle_task.c b/Software/Embedded_SW/Embedded/Common/Utilities/idle_task.c
index 0f4ce4244..7ba28bbe0 100644
--- a/Software/Embedded_SW/Embedded/Common/Utilities/idle_task.c
+++ b/Software/Embedded_SW/Embedded/Common/Utilities/idle_task.c
@@ -26,8 +26,8 @@
#include "Modules/Control/Control.h"
#include "Modules/Control/MillisecTask.h"
-#define MAX_PRIORITY 15
-#define SECOND_MAX_PRIORITY 24
+#define MAX_PRIORITY 24
+#define SECOND_MAX_PRIORITY 23
#define MIN_PRIORITY 0
#define SECOND_MIN_PRIORITY 1
#define TICKS_IN_SECOND 1000
diff --git a/Software/Embedded_SW/Embedded/Common/Utilities/ustdlib.c b/Software/Embedded_SW/Embedded/Common/Utilities/ustdlib.c
index efee94611..0eb68a9e4 100644
--- a/Software/Embedded_SW/Embedded/Common/Utilities/ustdlib.c
+++ b/Software/Embedded_SW/Embedded/Common/Utilities/ustdlib.c
@@ -1100,7 +1100,7 @@ umktime(struct tm *timeptr)
//! \return Returns the result of the conversion.
//
//*****************************************************************************
-unsigned long
+/*unsigned long
ustrtoul(const char * restrict nptr, const char ** restrict endptr, int base)
{
unsigned long ulRet, ulDigit, ulNeg, ulValid;
@@ -1274,7 +1274,7 @@ ustrtoul(const char * restrict nptr, const char ** restrict endptr, int base)
//
return(ulNeg ? (0 - ulRet) : ulRet);
}
-
+*/
//*****************************************************************************
//
// An array of the value of ten raised to the power-of-two exponents. This is
@@ -1282,7 +1282,7 @@ ustrtoul(const char * restrict nptr, const char ** restrict endptr, int base)
// 10^exp.
//
//*****************************************************************************
-static const float g_pfExponents[] =
+/*static const float g_pfExponents[] =
{
1.0e+01,
1.0e+02,
@@ -1290,7 +1290,7 @@ static const float g_pfExponents[] =
1.0e+08,
1.0e+16,
1.0e+32,
-};
+};*/
//*****************************************************************************
//
@@ -1309,7 +1309,7 @@ static const float g_pfExponents[] =
//! \return Returns the result of the conversion.
//
//*****************************************************************************
-float
+/*float
ustrtof(const char *nptr, const char **endptr)
{
unsigned long ulNeg, ulValid;
@@ -1816,7 +1816,7 @@ urand(void)
//
return((int)g_iRandomSeed);
}
-
+*/
//*****************************************************************************
//
// Close the Doxygen group.