summaryrefslogtreecommitdiffhomepage
path: root/Drv
diff options
context:
space:
mode:
authorAmlal EL Mahrouss <amlal@softwarelabs.com>2024-06-14 15:56:45 +0200
committerAmlal EL Mahrouss <amlal@softwarelabs.com>2024-06-14 15:56:45 +0200
commitf284646368823ffa88aa411d302f02421df2f5b2 (patch)
tree8ad1da4dcf856d1231a689a20a73cc32b9925572 /Drv
parentdd7b72379108c10cd68853d2a8a0332784ebb8cb (diff)
MHR-31: Focusing on ARM support for upcoming product.
Signed-off-by: Amlal EL Mahrouss <amlal@softwarelabs.com>
Diffstat (limited to 'Drv')
-rw-r--r--Drv/SampleDriver/CheckStck.c11
-rw-r--r--Drv/SampleDriver/SampleDriver.c6
2 files changed, 11 insertions, 6 deletions
diff --git a/Drv/SampleDriver/CheckStck.c b/Drv/SampleDriver/CheckStck.c
new file mode 100644
index 00000000..3eb157ba
--- /dev/null
+++ b/Drv/SampleDriver/CheckStck.c
@@ -0,0 +1,11 @@
+/* -------------------------------------------
+
+ Copyright Zeta Electronics Corporation
+
+------------------------------------------- */
+
+///! @brief Use this to check your stack, if using MinGW/MSVC/CodeTools.
+void ___chkstk_ms(void)
+{
+ (void)0;
+}
diff --git a/Drv/SampleDriver/SampleDriver.c b/Drv/SampleDriver/SampleDriver.c
index 94d5635b..85bd8d54 100644
--- a/Drv/SampleDriver/SampleDriver.c
+++ b/Drv/SampleDriver/SampleDriver.c
@@ -18,9 +18,3 @@ int __ImageEnd(void)
kernelPrintStr("SampleDriver: Shutting down...\r");
return 0;
}
-
-///! @brief Use this to check your stack, if using MinGW/MSVC.
-void ___chkstk_ms(void)
-{
- (void)0;
-}