Skip to content

Commit 6617e66

Browse files
committed
Added copyright headers to NXP + common
1 parent 5bc6aa4 commit 6617e66

40 files changed

+136
-39
lines changed

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Azure RTOS Getting Started Guides
1+
Getting Started Guides with Azure RTOS
22

33
Copyright (c) Microsoft Corporation.
44

Microchip/ATSAME54-XPRO/app/azure_config.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
#define _AZURE_CONFIG_H
33

44
/*************** Azure IoT Hub Connection Configuration ******************/
5-
#define IOT_HUB_HOSTNAME ""
6-
#define IOT_DEVICE_ID ""
7-
#define IOT_PRIMARY_KEY ""
5+
#define IOT_HUB_HOSTNAME "azurertos-iot.azure-devices.net"
6+
#define IOT_DEVICE_ID "SAME54"
7+
#define IOT_PRIMARY_KEY "QhTpPmqJzkKjyDYTanabbnEl4UYwyP0CCqdu8JcUaow="
88

99
#endif // _AZURE_CONFIG_H

NXP/MIMXRT1060-EVK/CMakeLists.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT License.
3+
14
cmake_minimum_required(VERSION 3.14)
25
project(mimxrt1060_azure_iot C ASM)
36
list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/../../cmake)

NXP/MIMXRT1060-EVK/app/CMakeLists.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT License.
3+
14
set(TARGET ${PROJECT_NAME})
25
set(LINKER_SCRIPT "${CMAKE_CURRENT_LIST_DIR}/startup/MIMXRT1062xxxxx_flexspi_nor.ld")
36

NXP/MIMXRT1060-EVK/app/azure_config.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
/* Copyright (c) Microsoft Corporation.
2+
Licensed under the MIT License. */
3+
14
#ifndef _AZURE_CONFIG_H
25
#define _AZURE_CONFIG_H
36

NXP/MIMXRT1060-EVK/app/azure_iothub.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
/* Copyright (c) Microsoft Corporation.
2+
Licensed under the MIT License. */
3+
14
#include "azure_iothub.h"
25

36
#include <stdio.h>

NXP/MIMXRT1060-EVK/app/azure_iothub.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
/* Copyright (c) Microsoft Corporation.
2+
Licensed under the MIT License. */
3+
14
#ifndef _AZURE_IOTHUB_H
25
#define _AZURE_IOTHUB_H
36

NXP/MIMXRT1060-EVK/app/board_init.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
/* Copyright (c) Microsoft Corporation.
2+
Licensed under the MIT License. */
3+
14
#include "board_init.h"
25

36
#include "board.h"

NXP/MIMXRT1060-EVK/app/board_init.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
/* Copyright (c) Microsoft Corporation.
2+
Licensed under the MIT License. */
3+
14
#ifndef _BOARD_INIT_H
25
#define _BOARD_INIT_H
36

NXP/MIMXRT1060-EVK/app/main.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
/* Copyright (c) Microsoft Corporation.
2+
Licensed under the MIT License. */
3+
14
#include <stdio.h>
25
#include <time.h>
36

0 commit comments

Comments
 (0)