mirror of
https://github.com/halleysfifthinc/toyota-avc-lan-bluetooth.git
synced 2025-06-07 07:56:15 +00:00
Added Licence info
This commit is contained in:
parent
a2c8ca134f
commit
c5b42d8454
@ -1,3 +1,21 @@
|
||||
/*
|
||||
This file is part of toyota-avc-lan-bluetooth.
|
||||
|
||||
toyota-avc-lan-bluetooth is free software: you can redistribute it and/or modify
|
||||
it under the terms of the Lesser GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
toyota-avc-lan-bluetooth 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
|
||||
Lesser GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the Lesser GNU General Public License
|
||||
along with toyota-avc-lan-bluetooth. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
|
||||
#include <avr/interrupt.h>
|
||||
#include <avr/io.h>
|
||||
#include <util/delay.h>
|
||||
|
@ -1,3 +1,20 @@
|
||||
/*
|
||||
This file is part of toyota-avc-lan-bluetooth.
|
||||
|
||||
toyota-avc-lan-bluetooth is free software: you can redistribute it and/or modify
|
||||
it under the terms of the Lesser GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
toyota-avc-lan-bluetooth 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
|
||||
Lesser GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the Lesser GNU General Public License
|
||||
along with toyota-avc-lan-bluetooth. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef __AVC_OTHER_H
|
||||
#define __AVC_OTHER_H
|
||||
#include "AVC_messages.h"
|
||||
|
@ -1,3 +1,20 @@
|
||||
/*
|
||||
This file is part of toyota-avc-lan-bluetooth.
|
||||
|
||||
toyota-avc-lan-bluetooth is free software: you can redistribute it and/or modify
|
||||
it under the terms of the Lesser GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
toyota-avc-lan-bluetooth 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
|
||||
Lesser GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the Lesser GNU General Public License
|
||||
along with toyota-avc-lan-bluetooth. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef __AVC_MACROS_H
|
||||
#define __AVC_MACROS_H
|
||||
|
||||
|
@ -1,3 +1,20 @@
|
||||
/*
|
||||
This file is part of toyota-avc-lan-bluetooth.
|
||||
|
||||
toyota-avc-lan-bluetooth is free software: you can redistribute it and/or modify
|
||||
it under the terms of the Lesser GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
toyota-avc-lan-bluetooth 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
|
||||
Lesser GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the Lesser GNU General Public License
|
||||
along with toyota-avc-lan-bluetooth. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include <avr/pgmspace.h>
|
||||
#include "AVC_messages.h"
|
||||
|
||||
|
@ -1,3 +1,20 @@
|
||||
/*
|
||||
This file is part of toyota-avc-lan-bluetooth.
|
||||
|
||||
toyota-avc-lan-bluetooth is free software: you can redistribute it and/or modify
|
||||
it under the terms of the Lesser GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
toyota-avc-lan-bluetooth 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
|
||||
Lesser GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the Lesser GNU General Public License
|
||||
along with toyota-avc-lan-bluetooth. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef __AVC_MESSAGES_H
|
||||
#define __AVC_MESSAGES_H
|
||||
|
||||
|
@ -1,3 +1,20 @@
|
||||
/*
|
||||
This file is part of toyota-avc-lan-bluetooth.
|
||||
|
||||
toyota-avc-lan-bluetooth is free software: you can redistribute it and/or modify
|
||||
it under the terms of the Lesser GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
toyota-avc-lan-bluetooth 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
|
||||
Lesser GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the Lesser GNU General Public License
|
||||
along with toyota-avc-lan-bluetooth. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include <avr/interrupt.h>
|
||||
#include <avr/io.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,4 +1,19 @@
|
||||
/*
|
||||
This file is part of toyota-avc-lan-bluetooth.
|
||||
|
||||
toyota-avc-lan-bluetooth is free software: you can redistribute it and/or modify
|
||||
it under the terms of the Lesser GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
toyota-avc-lan-bluetooth 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
|
||||
Lesser GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the Lesser GNU General Public License
|
||||
along with toyota-avc-lan-bluetooth. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#ifndef __USART_H
|
||||
#define __USART_H
|
||||
|
||||
|
@ -1,3 +1,20 @@
|
||||
/*
|
||||
This file is part of toyota-avc-lan-bluetooth.
|
||||
|
||||
toyota-avc-lan-bluetooth is free software: you can redistribute it and/or modify
|
||||
it under the terms of the Lesser GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
toyota-avc-lan-bluetooth 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
|
||||
Lesser GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the Lesser GNU General Public License
|
||||
along with toyota-avc-lan-bluetooth. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include <avr/io.h>
|
||||
#include <util/delay.h>
|
||||
#include <avr/pgmspace.h>
|
||||
|
@ -1,3 +1,20 @@
|
||||
/*
|
||||
This file is part of toyota-avc-lan-bluetooth.
|
||||
|
||||
toyota-avc-lan-bluetooth is free software: you can redistribute it and/or modify
|
||||
it under the terms of the Lesser GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
toyota-avc-lan-bluetooth 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
|
||||
Lesser GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the Lesser GNU General Public License
|
||||
along with toyota-avc-lan-bluetooth. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef __BLUETOOTH_H
|
||||
#define __BLUETOOTH_H
|
||||
|
||||
|
@ -1,3 +1,20 @@
|
||||
/*
|
||||
This file is part of toyota-avc-lan-bluetooth.
|
||||
|
||||
toyota-avc-lan-bluetooth is free software: you can redistribute it and/or modify
|
||||
it under the terms of the Lesser GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
toyota-avc-lan-bluetooth 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
|
||||
Lesser GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the Lesser GNU General Public License
|
||||
along with toyota-avc-lan-bluetooth. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include <avr/io.h>
|
||||
#include <util/delay.h>
|
||||
#include <avr/pgmspace.h>
|
||||
|
@ -1,3 +1,20 @@
|
||||
/*
|
||||
This file is part of toyota-avc-lan-bluetooth.
|
||||
|
||||
toyota-avc-lan-bluetooth is free software: you can redistribute it and/or modify
|
||||
it under the terms of the Lesser GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
toyota-avc-lan-bluetooth 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
|
||||
Lesser GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the Lesser GNU General Public License
|
||||
along with toyota-avc-lan-bluetooth. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include <avr/io.h>
|
||||
#include <avr/interrupt.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,3 +1,19 @@
|
||||
/*
|
||||
This file is part of toyota-avc-lan-bluetooth.
|
||||
|
||||
toyota-avc-lan-bluetooth is free software: you can redistribute it and/or modify
|
||||
it under the terms of the Lesser GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
toyota-avc-lan-bluetooth 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
|
||||
Lesser GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the Lesser GNU General Public License
|
||||
along with toyota-avc-lan-bluetooth. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef __TASK_MAN_H
|
||||
#define __TASK_MAN_H
|
||||
|
Loading…
x
Reference in New Issue
Block a user