Skip to content

Commit

Permalink
Add copyright to software files
Browse files Browse the repository at this point in the history
  • Loading branch information
nepfaff committed Jun 12, 2021
1 parent 3a39735 commit 3d7a11a
Show file tree
Hide file tree
Showing 14 changed files with 54 additions and 1 deletion.
3 changes: 2 additions & 1 deletion control/spaceXpp_rover_controller/.vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"regex": "c",
"tuple": "c",
"type_traits": "c",
"utility": "c"
"utility": "c",
"freertos.h": "c"
}
}
4 changes: 4 additions & 0 deletions control/spaceXpp_rover_controller/include/drive.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
Written by Nicholas Pfaff ([email protected]), 2021 - SpaceX++ EEE/EIE 2nd year group project, Imperial College London
*/

#include <string.h>
#include "esp_log.h"
#include "freertos/FreeRTOS.h"
Expand Down
4 changes: 4 additions & 0 deletions control/spaceXpp_rover_controller/include/energy.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
Written by Nicholas Pfaff ([email protected]), 2021 - SpaceX++ EEE/EIE 2nd year group project, Imperial College London
*/

#ifndef ENERGY_H
#define ENERGY_H

Expand Down
4 changes: 4 additions & 0 deletions control/spaceXpp_rover_controller/include/mqtt.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
Written by Nicholas Pfaff ([email protected]), 2021 - SpaceX++ EEE/EIE 2nd year group project, Imperial College London
*/

#include "esp_log.h"
#include "mqtt_client.h"

Expand Down
4 changes: 4 additions & 0 deletions control/spaceXpp_rover_controller/include/spi.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
Written by Nicholas Pfaff ([email protected]), 2021 - SpaceX++ EEE/EIE 2nd year group project, Imperial College London
*/

#include <stdio.h>
#include <string.h>
#include "freertos/FreeRTOS.h"
Expand Down
4 changes: 4 additions & 0 deletions control/spaceXpp_rover_controller/include/uart.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
Written by Nicholas Pfaff ([email protected]), 2021 - SpaceX++ EEE/EIE 2nd year group project, Imperial College London
*/

#include <stdio.h>
#include "string.h"
#include "esp_log.h"
Expand Down
4 changes: 4 additions & 0 deletions control/spaceXpp_rover_controller/include/wifi.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
Written by Nicholas Pfaff ([email protected]), 2021 - SpaceX++ EEE/EIE 2nd year group project, Imperial College London
*/

#include "esp_wifi.h"
#include "esp_system.h"
#include "esp_log.h"
Expand Down
4 changes: 4 additions & 0 deletions control/spaceXpp_rover_controller/src/drive.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
Written by Nicholas Pfaff ([email protected]), 2021 - SpaceX++ EEE/EIE 2nd year group project, Imperial College London
*/

#include "drive.h"

static const char *DRIVE_tag = "DRIVE";
Expand Down
4 changes: 4 additions & 0 deletions control/spaceXpp_rover_controller/src/energy.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
Written by Nicholas Pfaff ([email protected]), 2021 - SpaceX++ EEE/EIE 2nd year group project, Imperial College London
*/

#include "energy.h"

const EnergyEncoding energyEncoding = {"C", "H", "E"};
4 changes: 4 additions & 0 deletions control/spaceXpp_rover_controller/src/main.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
Written by Nicholas Pfaff ([email protected]), 2021 - SpaceX++ EEE/EIE 2nd year group project, Imperial College London
*/

#include "nvs_flash.h"
#include "esp_event.h"
#include "esp_netif.h"
Expand Down
4 changes: 4 additions & 0 deletions control/spaceXpp_rover_controller/src/mqtt.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
Written by Nicholas Pfaff ([email protected]), 2021 - SpaceX++ EEE/EIE 2nd year group project, Imperial College London
*/

#include "mqtt.h"

static const char *MQTT_tag = "MQTT";
Expand Down
4 changes: 4 additions & 0 deletions control/spaceXpp_rover_controller/src/spi.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
Written by Nicholas Pfaff ([email protected]), 2021 - SpaceX++ EEE/EIE 2nd year group project, Imperial College London
*/

#include "spi.h"

static const char *SPI_tag = "SPI";
Expand Down
4 changes: 4 additions & 0 deletions control/spaceXpp_rover_controller/src/uart.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
Written by Nicholas Pfaff ([email protected]), 2021 - SpaceX++ EEE/EIE 2nd year group project, Imperial College London
*/

#include "uart.h"

static const char *UART_tag = "UART";
Expand Down
4 changes: 4 additions & 0 deletions control/spaceXpp_rover_controller/src/wifi.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
Written by Nicholas Pfaff ([email protected]), 2021 - SpaceX++ EEE/EIE 2nd year group project, Imperial College London
*/

#include "wifi.h"

static const char *Wifi_tag = "WIFI";
Expand Down

0 comments on commit 3d7a11a

Please sign in to comment.