diff --git a/demo/adc/adc_interrupt_10bit.c b/demo/adc/adc_interrupt_10bit.c index 8d844a6..381698b 100644 --- a/demo/adc/adc_interrupt_10bit.c +++ b/demo/adc/adc_interrupt_10bit.c @@ -1,4 +1,4 @@ -// Copyright 2021 IOsetting +// Copyright 2021 IOsetting // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/demo/adc/adc_interrupt_2ch.c b/demo/adc/adc_interrupt_2ch.c index f70f2ab..217f79b 100644 --- a/demo/adc/adc_interrupt_2ch.c +++ b/demo/adc/adc_interrupt_2ch.c @@ -1,4 +1,4 @@ -// Copyright 2021 IOsetting +// Copyright 2021 IOsetting // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/demo/adc/adc_poll_10bit.c b/demo/adc/adc_poll_10bit.c index 904d77e..52ff983 100644 --- a/demo/adc/adc_poll_10bit.c +++ b/demo/adc/adc_poll_10bit.c @@ -1,4 +1,4 @@ -// Copyright 2021 IOsetting +// Copyright 2021 IOsetting // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/demo/adc/adc_poll_8bit.c b/demo/adc/adc_poll_8bit.c index 09d1c9c..0742c55 100644 --- a/demo/adc/adc_poll_8bit.c +++ b/demo/adc/adc_poll_8bit.c @@ -1,4 +1,4 @@ -// Copyright 2021 IOsetting +// Copyright 2021 IOsetting // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/demo/tim/timer0_print_cpuid.c b/demo/tim/timer0_print_cpuid.c index 91282e5..580e2ef 100644 --- a/demo/tim/timer0_print_cpuid.c +++ b/demo/tim/timer0_print_cpuid.c @@ -1,3 +1,17 @@ +// Copyright 2021 IOsetting +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #include "fw_hal.h" static uint16_t counter = 0; diff --git a/demo/tim/timer0_timer_1t.c b/demo/tim/timer0_timer_1t.c index e4bbd00..d698a96 100644 --- a/demo/tim/timer0_timer_1t.c +++ b/demo/tim/timer0_timer_1t.c @@ -1,3 +1,17 @@ +// Copyright 2021 IOsetting +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #include "fw_hal.h" static uint16_t counter = 0; diff --git a/demo/tim/timer2_timer_12t.c b/demo/tim/timer2_timer_12t.c index 7906116..c40eef6 100644 --- a/demo/tim/timer2_timer_12t.c +++ b/demo/tim/timer2_timer_12t.c @@ -1,3 +1,17 @@ +// Copyright 2021 IOsetting +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #include "fw_hal.h" INTERRUPT(Timer2_Routine, EXTI_VectTimer2) diff --git a/demo/tim/timer2_timer_1t.c b/demo/tim/timer2_timer_1t.c index 0d28a7c..d9d8779 100644 --- a/demo/tim/timer2_timer_1t.c +++ b/demo/tim/timer2_timer_1t.c @@ -1,3 +1,17 @@ +// Copyright 2021 IOsetting +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #include "fw_hal.h" static uint8_t counter = 0; diff --git a/demo/uart/uart1_interrupt_tx_rx.c b/demo/uart/uart1_interrupt_tx_rx.c index cb09086..a5b2db2 100644 --- a/demo/uart/uart1_interrupt_tx_rx.c +++ b/demo/uart/uart1_interrupt_tx_rx.c @@ -1,3 +1,17 @@ +// Copyright 2021 IOsetting +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #include "fw_hal.h" extern char UART1_RxBuffer[UART_RX_BUFF_SIZE]; diff --git a/demo/uart/uart1_tx.c b/demo/uart/uart1_tx.c index 5f31ee7..db9983c 100644 --- a/demo/uart/uart1_tx.c +++ b/demo/uart/uart1_tx.c @@ -1,3 +1,17 @@ +// Copyright 2021 IOsetting +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #include "fw_hal.h" void main(void) diff --git a/demo/uart/uart2_tx.c b/demo/uart/uart2_tx.c index bb3b8f8..4972adb 100644 --- a/demo/uart/uart2_tx.c +++ b/demo/uart/uart2_tx.c @@ -1,3 +1,17 @@ +// Copyright 2021 IOsetting +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #include "fw_hal.h" void main(void) diff --git a/include/fw_adc.h b/include/fw_adc.h index 5857dcc..febce8a 100644 --- a/include/fw_adc.h +++ b/include/fw_adc.h @@ -1,4 +1,4 @@ -// Copyright 2021 IOsetting +// Copyright 2021 IOsetting // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/include/fw_cid_stc8g.h b/include/fw_cid_stc8g.h index e2473e9..b6d7371 100644 --- a/include/fw_cid_stc8g.h +++ b/include/fw_cid_stc8g.h @@ -1,4 +1,4 @@ -// Copyright 2021 IOsetting +// Copyright 2021 IOsetting // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/include/fw_cid_stc8h.h b/include/fw_cid_stc8h.h index 0a19026..4f7c0ef 100644 --- a/include/fw_cid_stc8h.h +++ b/include/fw_cid_stc8h.h @@ -1,4 +1,4 @@ -// Copyright 2021 IOsetting +// Copyright 2021 IOsetting // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/include/fw_conf.h b/include/fw_conf.h index ebc67a8..218a39d 100644 --- a/include/fw_conf.h +++ b/include/fw_conf.h @@ -1,3 +1,17 @@ +// Copyright 2021 IOsetting +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #ifndef ___FW_CONF_H___ #define ___FW_CONF_H___ diff --git a/include/fw_exti.h b/include/fw_exti.h index b17003d..7f06ba0 100644 --- a/include/fw_exti.h +++ b/include/fw_exti.h @@ -1,4 +1,4 @@ -// Copyright 2021 IOsetting +// Copyright 2021 IOsetting // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/include/fw_gpio.h b/include/fw_gpio.h index 4e3d810..cf851c8 100644 --- a/include/fw_gpio.h +++ b/include/fw_gpio.h @@ -1,4 +1,4 @@ -// Copyright 2021 IOsetting +// Copyright 2021 IOsetting // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/include/fw_hal.h b/include/fw_hal.h index 935fe48..66046aa 100644 --- a/include/fw_hal.h +++ b/include/fw_hal.h @@ -1,4 +1,4 @@ -// Copyright 2021 IOsetting +// Copyright 2021 IOsetting // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/include/fw_mem.h b/include/fw_mem.h index d74cd6b..0912553 100644 --- a/include/fw_mem.h +++ b/include/fw_mem.h @@ -1,4 +1,4 @@ -// Copyright 2021 IOsetting +// Copyright 2021 IOsetting // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/include/fw_rcc.h b/include/fw_rcc.h index b94cd76..2399b94 100644 --- a/include/fw_rcc.h +++ b/include/fw_rcc.h @@ -1,4 +1,4 @@ -// Copyright 2021 IOsetting +// Copyright 2021 IOsetting // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/include/fw_reg_base.h b/include/fw_reg_base.h index 13abf8e..7115fd2 100644 --- a/include/fw_reg_base.h +++ b/include/fw_reg_base.h @@ -1,3 +1,17 @@ +// Copyright 2021 IOsetting +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + #ifndef __IO_REG_BASE_H__ #define __IO_REG_BASE_H__ diff --git a/include/fw_spi.h b/include/fw_spi.h index 78b9b7e..a4dee18 100644 --- a/include/fw_spi.h +++ b/include/fw_spi.h @@ -1,4 +1,4 @@ -// Copyright 2021 IOsetting +// Copyright 2021 IOsetting // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/include/fw_sys.h b/include/fw_sys.h index d9421ee..9b749e3 100644 --- a/include/fw_sys.h +++ b/include/fw_sys.h @@ -1,4 +1,4 @@ -// Copyright 2021 IOsetting +// Copyright 2021 IOsetting // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/include/fw_tim.h b/include/fw_tim.h index d623b02..1a80960 100644 --- a/include/fw_tim.h +++ b/include/fw_tim.h @@ -1,4 +1,4 @@ -// Copyright 2021 IOsetting +// Copyright 2021 IOsetting // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/include/fw_types.h b/include/fw_types.h index f06dc6e..64c0f38 100644 --- a/include/fw_types.h +++ b/include/fw_types.h @@ -1,4 +1,4 @@ -// Copyright 2021 IOsetting +// Copyright 2021 IOsetting // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/include/fw_uart.h b/include/fw_uart.h index d1dd4f8..36eab50 100644 --- a/include/fw_uart.h +++ b/include/fw_uart.h @@ -1,4 +1,4 @@ -// Copyright 2021 IOsetting +// Copyright 2021 IOsetting // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/include/fw_util.h b/include/fw_util.h index 598dea8..bf13c3c 100644 --- a/include/fw_util.h +++ b/include/fw_util.h @@ -1,4 +1,4 @@ -// Copyright 2021 IOsetting +// Copyright 2021 IOsetting // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/fw_exti.c b/src/fw_exti.c index 01317ba..44641fc 100644 --- a/src/fw_exti.c +++ b/src/fw_exti.c @@ -1,4 +1,4 @@ -// Copyright 2021 IOsetting +// Copyright 2021 IOsetting // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/fw_gpio.c b/src/fw_gpio.c index 8125152..a376b86 100644 --- a/src/fw_gpio.c +++ b/src/fw_gpio.c @@ -1,4 +1,4 @@ -// Copyright 2021 IOsetting +// Copyright 2021 IOsetting // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/fw_mem.c b/src/fw_mem.c index 68e7945..01e80b5 100644 --- a/src/fw_mem.c +++ b/src/fw_mem.c @@ -1,4 +1,4 @@ -// Copyright 2021 IOsetting +// Copyright 2021 IOsetting // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/fw_rcc.c b/src/fw_rcc.c index f4d5420..def0f18 100644 --- a/src/fw_rcc.c +++ b/src/fw_rcc.c @@ -1,4 +1,4 @@ -// Copyright 2021 IOsetting +// Copyright 2021 IOsetting // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/fw_sys.c b/src/fw_sys.c index d2c9b0f..a7046e3 100644 --- a/src/fw_sys.c +++ b/src/fw_sys.c @@ -1,4 +1,4 @@ -// Copyright 2021 IOsetting +// Copyright 2021 IOsetting // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/fw_tim.c b/src/fw_tim.c index e8a5625..5bd36e9 100644 --- a/src/fw_tim.c +++ b/src/fw_tim.c @@ -1,4 +1,4 @@ -// Copyright 2021 IOsetting +// Copyright 2021 IOsetting // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/fw_uart.c b/src/fw_uart.c index 42a03f2..08f46cc 100644 --- a/src/fw_uart.c +++ b/src/fw_uart.c @@ -1,4 +1,4 @@ -// Copyright 2021 IOsetting +// Copyright 2021 IOsetting // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/fw_util.c b/src/fw_util.c index 370242e..06a847d 100644 --- a/src/fw_util.c +++ b/src/fw_util.c @@ -1,4 +1,4 @@ -// Copyright 2021 IOsetting +// Copyright 2021 IOsetting // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License.