From 3df4c40f38f3b93c777846f5e1d4a0444a88f7fa Mon Sep 17 00:00:00 2001 From: Doug Brown Date: Sun, 22 Nov 2020 22:28:47 -0800 Subject: [PATCH] Add/update copyright This just makes sure everything is up to date with copyrights. --- chip_id.h | 2 +- drivers/mcp23s17.c | 17 +++++++++++++++++ drivers/mcp23s17.h | 17 +++++++++++++++++ drivers/parallel_flash.c | 17 +++++++++++++++++ drivers/parallel_flash.h | 17 +++++++++++++++++ hal/at90usb646/board.c | 17 +++++++++++++++++ hal/at90usb646/board_hw.h | 17 +++++++++++++++++ hal/at90usb646/cdc_device_definition.c | 2 +- hal/at90usb646/cdc_device_definition.h | 2 +- hal/at90usb646/gpio.c | 17 +++++++++++++++++ hal/at90usb646/gpio_hw.h | 17 +++++++++++++++++ hal/at90usb646/hardware.h | 17 +++++++++++++++++ hal/at90usb646/parallel_bus.c | 18 ++++++++++++++++++ hal/at90usb646/spi.c | 17 +++++++++++++++++ hal/at90usb646/spi_private.h | 17 +++++++++++++++++ hal/at90usb646/usbcdc.c | 17 +++++++++++++++++ hal/at90usb646/usbcdc_hw.h | 17 +++++++++++++++++ hal/board.h | 17 +++++++++++++++++ hal/gpio.h | 17 +++++++++++++++++ hal/parallel_bus.h | 17 +++++++++++++++++ hal/spi.h | 17 +++++++++++++++++ hal/usbcdc.h | 17 +++++++++++++++++ led.h | 17 +++++++++++++++++ main.c | 2 +- programmer_protocol.h | 2 +- simm_programmer.c | 2 +- simm_programmer.h | 2 +- tests/simm_electrical_test.c | 2 +- tests/simm_electrical_test.h | 2 +- 29 files changed, 350 insertions(+), 9 deletions(-) diff --git a/chip_id.h b/chip_id.h index c83fe05..9e06964 100644 --- a/chip_id.h +++ b/chip_id.h @@ -4,7 +4,7 @@ * Created on: Dec 10, 2011 * Author: Doug * - * Copyright (C) 2011-2012 Doug Brown + * Copyright (C) 2011-2020 Doug Brown * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/drivers/mcp23s17.c b/drivers/mcp23s17.c index 6311ac0..52a6787 100644 --- a/drivers/mcp23s17.c +++ b/drivers/mcp23s17.c @@ -3,6 +3,23 @@ * * Created on: Nov 25, 2011 * Author: Doug + * + * Copyright (C) 2011-2020 Doug Brown + * + * This program 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 2 + * of the License, or (at your option) any later version. + * + * This program 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, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * */ #include "mcp23s17.h" diff --git a/drivers/mcp23s17.h b/drivers/mcp23s17.h index 7a33cbb..39fda22 100644 --- a/drivers/mcp23s17.h +++ b/drivers/mcp23s17.h @@ -3,6 +3,23 @@ * * Created on: Nov 25, 2011 * Author: Doug + * + * Copyright (C) 2011-2020 Doug Brown + * + * This program 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 2 + * of the License, or (at your option) any later version. + * + * This program 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, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * */ #ifndef DRIVERS_MCP23S17_H_ diff --git a/drivers/parallel_flash.c b/drivers/parallel_flash.c index cdbef60..cb57bff 100644 --- a/drivers/parallel_flash.c +++ b/drivers/parallel_flash.c @@ -3,6 +3,23 @@ * * Created on: Nov 25, 2011 * Author: Doug + * + * Copyright (C) 2011-2020 Doug Brown + * + * This program 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 2 + * of the License, or (at your option) any later version. + * + * This program 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, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * */ #include "parallel_flash.h" diff --git a/drivers/parallel_flash.h b/drivers/parallel_flash.h index cdbd50e..2c08eef 100644 --- a/drivers/parallel_flash.h +++ b/drivers/parallel_flash.h @@ -3,6 +3,23 @@ * * Created on: Nov 25, 2011 * Author: Doug + * + * Copyright (C) 2011-2020 Doug Brown + * + * This program 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 2 + * of the License, or (at your option) any later version. + * + * This program 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, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * */ #ifndef DRIVERS_PARALLEL_FLASH_H_ diff --git a/hal/at90usb646/board.c b/hal/at90usb646/board.c index f988295..f4ff01c 100644 --- a/hal/at90usb646/board.c +++ b/hal/at90usb646/board.c @@ -3,6 +3,23 @@ * * Created on: Nov 15, 2020 * Author: Doug + * + * Copyright (C) 2011-2020 Doug Brown + * + * This program 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 2 + * of the License, or (at your option) any later version. + * + * This program 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, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * */ #include "board_hw.h" diff --git a/hal/at90usb646/board_hw.h b/hal/at90usb646/board_hw.h index bad9fb3..4c252f1 100644 --- a/hal/at90usb646/board_hw.h +++ b/hal/at90usb646/board_hw.h @@ -3,6 +3,23 @@ * * Created on: Nov 14, 2020 * Author: Doug + * + * Copyright (C) 2011-2020 Doug Brown + * + * This program 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 2 + * of the License, or (at your option) any later version. + * + * This program 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, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * */ #ifndef HAL_AT90USB646_BOARD_HW_H_ diff --git a/hal/at90usb646/cdc_device_definition.c b/hal/at90usb646/cdc_device_definition.c index 9c2829f..5cab1f7 100644 --- a/hal/at90usb646/cdc_device_definition.c +++ b/hal/at90usb646/cdc_device_definition.c @@ -4,7 +4,7 @@ * Created on: Dec 26, 2011 * Author: Doug * - * Copyright (C) 2011-2012 Doug Brown + * Copyright (C) 2011-2020 Doug Brown * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/hal/at90usb646/cdc_device_definition.h b/hal/at90usb646/cdc_device_definition.h index 4f91cb0..f4bf5c9 100644 --- a/hal/at90usb646/cdc_device_definition.h +++ b/hal/at90usb646/cdc_device_definition.h @@ -4,7 +4,7 @@ * Created on: Dec 26, 2011 * Author: Doug * - * Copyright (C) 2011-2012 Doug Brown + * Copyright (C) 2011-2020 Doug Brown * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/hal/at90usb646/gpio.c b/hal/at90usb646/gpio.c index 33824d5..a86e4e1 100644 --- a/hal/at90usb646/gpio.c +++ b/hal/at90usb646/gpio.c @@ -3,6 +3,23 @@ * * Created on: Nov 14, 2020 * Author: Doug + * + * Copyright (C) 2011-2020 Doug Brown + * + * This program 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 2 + * of the License, or (at your option) any later version. + * + * This program 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, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * */ #include "../gpio.h" diff --git a/hal/at90usb646/gpio_hw.h b/hal/at90usb646/gpio_hw.h index b765728..3d03e69 100644 --- a/hal/at90usb646/gpio_hw.h +++ b/hal/at90usb646/gpio_hw.h @@ -3,6 +3,23 @@ * * Created on: Nov 14, 2020 * Author: Doug + * + * Copyright (C) 2011-2020 Doug Brown + * + * This program 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 2 + * of the License, or (at your option) any later version. + * + * This program 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, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * */ #ifndef HAL_AT90USB646_GPIO_HW_H_ diff --git a/hal/at90usb646/hardware.h b/hal/at90usb646/hardware.h index c6280c8..f46e597 100644 --- a/hal/at90usb646/hardware.h +++ b/hal/at90usb646/hardware.h @@ -3,6 +3,23 @@ * * Created on: Dec 4, 2011 * Author: Doug + * + * Copyright (C) 2011-2020 Doug Brown + * + * This program 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 2 + * of the License, or (at your option) any later version. + * + * This program 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, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * */ #ifndef HAL_AT90USB646_HARDWARE_H_ diff --git a/hal/at90usb646/parallel_bus.c b/hal/at90usb646/parallel_bus.c index c6f21a6..d9c5f0b 100644 --- a/hal/at90usb646/parallel_bus.c +++ b/hal/at90usb646/parallel_bus.c @@ -4,6 +4,24 @@ * Created on: Nov 26, 2011 * Author: Doug * + * Copyright (C) 2011-2020 Doug Brown + * + * This program 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 2 + * of the License, or (at your option) any later version. + * + * This program 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, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + * ----------------------------------------------------------------------------- + * * For some reason, avr-gcc is super inefficient dealing with uint32_t * variables. Looking at the individual bytes using a union results in much * more optimized code. Every cycle counts for this. So several of these diff --git a/hal/at90usb646/spi.c b/hal/at90usb646/spi.c index 173a918..5ce8352 100644 --- a/hal/at90usb646/spi.c +++ b/hal/at90usb646/spi.c @@ -3,6 +3,23 @@ * * Created on: Nov 14, 2020 * Author: Doug + * + * Copyright (C) 2011-2020 Doug Brown + * + * This program 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 2 + * of the License, or (at your option) any later version. + * + * This program 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, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * */ #include "../spi.h" diff --git a/hal/at90usb646/spi_private.h b/hal/at90usb646/spi_private.h index 9bfffb9..cd7170b 100644 --- a/hal/at90usb646/spi_private.h +++ b/hal/at90usb646/spi_private.h @@ -3,6 +3,23 @@ * * Created on: Nov 14, 2020 * Author: Doug + * + * Copyright (C) 2011-2020 Doug Brown + * + * This program 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 2 + * of the License, or (at your option) any later version. + * + * This program 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, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * */ #ifndef HAL_AT90USB646_SPI_PRIVATE_H_ diff --git a/hal/at90usb646/usbcdc.c b/hal/at90usb646/usbcdc.c index 8a9eeb8..66b20f4 100644 --- a/hal/at90usb646/usbcdc.c +++ b/hal/at90usb646/usbcdc.c @@ -3,6 +3,23 @@ * * Created on: Nov 22, 2020 * Author: Doug + * + * Copyright (C) 2011-2020 Doug Brown + * + * This program 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 2 + * of the License, or (at your option) any later version. + * + * This program 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, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * */ #include "../usbcdc.h" diff --git a/hal/at90usb646/usbcdc_hw.h b/hal/at90usb646/usbcdc_hw.h index d92d99a..2bbc921 100644 --- a/hal/at90usb646/usbcdc_hw.h +++ b/hal/at90usb646/usbcdc_hw.h @@ -3,6 +3,23 @@ * * Created on: Nov 22, 2020 * Author: Doug + * + * Copyright (C) 2011-2020 Doug Brown + * + * This program 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 2 + * of the License, or (at your option) any later version. + * + * This program 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, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * */ #ifndef HAL_AT90USB646_USBCDC_HW_H_ diff --git a/hal/board.h b/hal/board.h index a4d84d8..82f2f8d 100644 --- a/hal/board.h +++ b/hal/board.h @@ -3,6 +3,23 @@ * * Created on: Nov 14, 2020 * Author: Doug + * + * Copyright (C) 2011-2020 Doug Brown + * + * This program 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 2 + * of the License, or (at your option) any later version. + * + * This program 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, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * */ #ifndef HAL_BOARD_H_ diff --git a/hal/gpio.h b/hal/gpio.h index 29c238b..685bb96 100644 --- a/hal/gpio.h +++ b/hal/gpio.h @@ -3,6 +3,23 @@ * * Created on: Nov 14, 2020 * Author: Doug + * + * Copyright (C) 2011-2020 Doug Brown + * + * This program 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 2 + * of the License, or (at your option) any later version. + * + * This program 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, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * */ #ifndef HAL_GPIO_H_ diff --git a/hal/parallel_bus.h b/hal/parallel_bus.h index 26f2244..7ab5537 100644 --- a/hal/parallel_bus.h +++ b/hal/parallel_bus.h @@ -3,6 +3,23 @@ * * Created on: Nov 26, 2011 * Author: Doug + * + * Copyright (C) 2011-2020 Doug Brown + * + * This program 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 2 + * of the License, or (at your option) any later version. + * + * This program 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, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * */ #ifndef HAL_PARALLEL_BUS_H_ diff --git a/hal/spi.h b/hal/spi.h index f4bda1c..5768cb2 100644 --- a/hal/spi.h +++ b/hal/spi.h @@ -3,6 +3,23 @@ * * Created on: Nov 14, 2020 * Author: Doug + * + * Copyright (C) 2011-2020 Doug Brown + * + * This program 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 2 + * of the License, or (at your option) any later version. + * + * This program 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, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * */ #ifndef HAL_SPI_H_ diff --git a/hal/usbcdc.h b/hal/usbcdc.h index 015df28..6a5176a 100644 --- a/hal/usbcdc.h +++ b/hal/usbcdc.h @@ -3,6 +3,23 @@ * * Created on: Nov 22, 2020 * Author: Doug + * + * Copyright (C) 2011-2020 Doug Brown + * + * This program 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 2 + * of the License, or (at your option) any later version. + * + * This program 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, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * */ #ifndef HAL_USBCDC_H_ diff --git a/led.h b/led.h index 731cd24..61225ca 100644 --- a/led.h +++ b/led.h @@ -3,6 +3,23 @@ * * Created on: May 27, 2012 * Author: Doug + * + * Copyright (C) 2011-2020 Doug Brown + * + * This program 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 2 + * of the License, or (at your option) any later version. + * + * This program 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, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * */ #ifndef LED_H_ diff --git a/main.c b/main.c index 75ee425..dc85acc 100644 --- a/main.c +++ b/main.c @@ -4,7 +4,7 @@ * Created on: Nov 25, 2011 * Author: Doug * - * Copyright (C) 2011-2012 Doug Brown + * Copyright (C) 2011-2020 Doug Brown * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/programmer_protocol.h b/programmer_protocol.h index b37008e..f507161 100644 --- a/programmer_protocol.h +++ b/programmer_protocol.h @@ -4,7 +4,7 @@ * Created on: Dec 26, 2011 * Author: Doug * - * Copyright (C) 2011-2012 Doug Brown + * Copyright (C) 2011-2020 Doug Brown * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/simm_programmer.c b/simm_programmer.c index 9594e5d..349e139 100644 --- a/simm_programmer.c +++ b/simm_programmer.c @@ -4,7 +4,7 @@ * Created on: Dec 9, 2011 * Author: Doug * - * Copyright (C) 2011-2012 Doug Brown + * Copyright (C) 2011-2020 Doug Brown * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/simm_programmer.h b/simm_programmer.h index d3fd8cb..d66e881 100644 --- a/simm_programmer.h +++ b/simm_programmer.h @@ -4,7 +4,7 @@ * Created on: Dec 9, 2011 * Author: Doug * - * Copyright (C) 2011-2012 Doug Brown + * Copyright (C) 2011-2020 Doug Brown * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/tests/simm_electrical_test.c b/tests/simm_electrical_test.c index 9afe6bf..6909ae9 100644 --- a/tests/simm_electrical_test.c +++ b/tests/simm_electrical_test.c @@ -4,7 +4,7 @@ * Created on: Nov 26, 2011 * Author: Doug * - * Copyright (C) 2011-2012 Doug Brown + * Copyright (C) 2011-2020 Doug Brown * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/tests/simm_electrical_test.h b/tests/simm_electrical_test.h index 8396a45..27676a3 100644 --- a/tests/simm_electrical_test.h +++ b/tests/simm_electrical_test.h @@ -4,7 +4,7 @@ * Created on: Nov 26, 2011 * Author: Doug * - * Copyright (C) 2011-2012 Doug Brown + * Copyright (C) 2011-2020 Doug Brown * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License