diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2022-01-05 15:15:34 +0100 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2022-01-05 15:15:34 +0100 |
commit | 12a5c251fcad3ae906ed9482d092bd0068f35f8f (patch) | |
tree | fbeeb4f2ef9ae2d193cad742e2f2df317baa16a8 | |
parent | e899245018a570900dd79fb775072558f94d2c94 (diff) | |
download | analog_instruments-12a5c251fcad3ae906ed9482d092bd0068f35f8f.tar.gz |
Relicense to MIT
-rw-r--r-- | LICENSE | 21 | ||||
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | src/cmd.c | 2 | ||||
-rw-r--r-- | src/cmd.h | 2 | ||||
-rw-r--r-- | src/helpers.c | 2 | ||||
-rw-r--r-- | src/helpers.h | 2 | ||||
-rw-r--r-- | src/main.c | 2 | ||||
-rw-r--r-- | src/pwm.c | 2 | ||||
-rw-r--r-- | src/pwm.h | 2 | ||||
-rw-r--r-- | src/uart.c | 2 | ||||
-rw-r--r-- | src/uart.h | 2 |
11 files changed, 34 insertions, 9 deletions
@@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2012 Jonas Gunz <himself at jonasgunz dot de> + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. @@ -1,3 +1,7 @@ +# Makefile +# (c) 2022 Jonas Gunz <himself@jonasgunz.de> +# License: MIT + MCU = atmega8 # only for avrdude PROGRAMMER = dragon_isp @@ -1,7 +1,7 @@ /* * src/cmd.c * (c) 2021 Jonas Gunz <himself@jonasgunz.de> - * License: All rights reserved. + * License: MIT */ #include "cmd.h" @@ -1,7 +1,7 @@ /* * src/cmd.h * (c) 2021 Jonas Gunz <himself@jonasgunz.de> - * License: All rights reserved. + * License: MIT */ #ifndef _CMD_H_ diff --git a/src/helpers.c b/src/helpers.c index 61c4bc5..8c4a8c9 100644 --- a/src/helpers.c +++ b/src/helpers.c @@ -1,7 +1,7 @@ /* * src/helpers.c * (c) 2022 Jonas Gunz <himself@jonasgunz.de> - * License: All rights reserved. + * License: MIT */ #include "helpers.h" diff --git a/src/helpers.h b/src/helpers.h index 6395abc..4964113 100644 --- a/src/helpers.h +++ b/src/helpers.h @@ -1,7 +1,7 @@ /* * src/helpers.h * (c) 2022 Jonas Gunz <himself@jonasgunz.de> - * License: All rights reserved. + * License: MIT */ #ifndef _HELPERS_H_ @@ -1,7 +1,7 @@ /* * src/main.c * (c) 2021 Jonas Gunz <himself@jonasgunz.de> - * License: All rights reserved. + * License: MIT */ #include <avr/io.h> @@ -1,7 +1,7 @@ /* * src/pwm.c * (c) 2022 Jonas Gunz <himself@jonasgunz.de> - * License: All rights reserved. + * License: MIT */ #include "pwm.h" @@ -1,7 +1,7 @@ /* * src/pwm.h * (c) 2022 Jonas Gunz <himself@jonasgunz.de> - * License: All rights reserved. + * License: MIT */ #ifndef _PWM_H_ @@ -1,7 +1,7 @@ /* * src/uart.c * (c) 2021 Jonas Gunz <himself@jonasgunz.de> - * License: All rights reserved. + * License: MIT */ #include "uart.h" @@ -1,7 +1,7 @@ /* * src/uart.h * (c) 2021 Jonas Gunz <himself@jonasgunz.de> - * License: All rights reserved. + * License: MIT */ /* |