aboutsummaryrefslogtreecommitdiff
path: root/mcu
diff options
context:
space:
mode:
authorNIIBE Yutaka <gniibe@fsij.org>2016-05-31 21:41:40 +0900
committerNIIBE Yutaka <gniibe@fsij.org>2016-05-31 21:41:40 +0900
commitb6e3a1aba124473b0fff9c8bc0b04cb01962391d (patch)
treebafedcc7b50cb0e5bef0d5b3ca5b39d52a2d472d /mcu
parentc79a41870a9d473947adb1d2fbc6687b59b9c31b (diff)
Relicense ADC driver with GPLv3+ plus EXCEPTION
Diffstat (limited to 'mcu')
-rw-r--r--mcu/adc-stm32f103.c18
-rw-r--r--mcu/sys-stm32f030.h14
-rw-r--r--mcu/usb-stm32f103.c28
3 files changed, 44 insertions, 16 deletions
diff --git a/mcu/adc-stm32f103.c b/mcu/adc-stm32f103.c
index 728d921..6a8076e 100644
--- a/mcu/adc-stm32f103.c
+++ b/mcu/adc-stm32f103.c
@@ -7,22 +7,26 @@
* Free Software Initiative of Japan
* Author: NIIBE Yutaka <gniibe@fsij.org>
*
- * This file is a part of NeuG, a True Random Number Generator
- * implementation based on quantization error of ADC (for STM32F103).
+ * This file is a part of Chopstx, a thread library for embedded.
*
- * NeuG is free software: you can redistribute it and/or modify it
+ * Chopstx is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
- * NeuG is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
- * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
- * License for more details.
+ * Chopstx is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
+ * As additional permission under GNU GPL version 3 section 7, you may
+ * distribute non-source form of the Program without the copy of the
+ * GNU GPL normally required by section 4, provided you inform the
+ * receipents of GNU GPL by a written offer.
+ *
*/
#include <stdint.h>
diff --git a/mcu/sys-stm32f030.h b/mcu/sys-stm32f030.h
index 4f18291..ddd83af 100644
--- a/mcu/sys-stm32f030.h
+++ b/mcu/sys-stm32f030.h
@@ -113,22 +113,18 @@ nvic_system_reset (void)
(*vector[12]) ();
}
-/*
- * Users can override INLINE by 'attribute((used))' to have an
- * implementation defined.
- */
-#if !defined(INLINE)
-#define INLINE __inline__
-#endif
+#ifdef REQUIRE_CLOCK_GPIO_SETTING_IN_SYS
+/* Provide the function entries. */
-static INLINE void
+static void __attribute__ ((used))
clock_init (void)
{
(*vector[13]) ();
}
-static INLINE void
+static void __attribute__ ((used))
gpio_init (void)
{
(*vector[14]) ();
}
+#endif
diff --git a/mcu/usb-stm32f103.c b/mcu/usb-stm32f103.c
index 3d11ef8..d41c960 100644
--- a/mcu/usb-stm32f103.c
+++ b/mcu/usb-stm32f103.c
@@ -1,3 +1,31 @@
+/*
+ * usb-stm32f103.c - USB driver for STM32F103
+ *
+ * Copyright (C) 2016 Flying Stone Technology
+ * Author: NIIBE Yutaka <gniibe@fsij.org>
+ *
+ * This file is a part of Chopstx, a thread library for embedded.
+ *
+ * Chopstx is free software: you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * Chopstx is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * As additional permission under GNU GPL version 3 section 7, you may
+ * distribute non-source form of the Program without the copy of the
+ * GNU GPL normally required by section 4, provided you inform the
+ * receipents of GNU GPL by a written offer.
+ *
+ */
+
#include <stdint.h>
#include <stdlib.h>