# My Digital Signal Controller Library # The objective of MyDSC library is to implement controllers with help digital signal processors, digital signal controllers or mixed signals processors.

Dependents:   mydsc_sampling_example mydsc_sampling_example mydsc-serial-example mydsc-nonblocking-example

Revision:
4:90c3f1288d41
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/mydsc_error.c	Sat Mar 28 16:09:15 2020 +0000
@@ -0,0 +1,11 @@
+#include "mydsc_error.h"
+
+mydsc_errno_t mydsc_errno = MYDSC_SUCCESS;
+
+char *mydsc_error[] ={
+    "Ok",
+    "key-value: Value can't be changed",
+    "key-value: There isn't such key",
+    "The value is wrong",
+    
+};