Demo application for using the AT&T IoT Starter Kit Powered by AWS.

Dependencies:   SDFileSystem

Fork of ATT_AWS_IoT_demo by Anthony Phillips

IoT Starter Kit Powered by AWS Demo

This program demonstrates the AT&T IoT Starter Kit sending data directly into AWS IoT. It's explained and used in the Getting Started with the IoT Starter Kit Powered by AWS on starterkit.att.com.

What's required

  • AT&T IoT LTE Add-on (also known as the Cellular Shield)
  • NXP K64F - for programming
  • microSD card - used to store your AWS security credentials
  • AWS account
  • Python, locally installed

If you don't already have an IoT Starter Kit, you can purchase a kit here. The IoT Starter Kit Powered by AWS includes the LTE cellular shield, K64F, and a microSD card.

Committer:
rfinn
Date:
Tue Feb 07 16:18:57 2017 +0000
Revision:
27:2f486c766854
Parent:
12:1ae41c231014
changed SDFileSystem library

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 12:1ae41c231014 1 /*
mbed_official 12:1ae41c231014 2 * Copyright (C) 2006-2016, ARM Limited, All Rights Reserved
mbed_official 12:1ae41c231014 3 * SPDX-License-Identifier: Apache-2.0
mbed_official 12:1ae41c231014 4 *
mbed_official 12:1ae41c231014 5 * Licensed under the Apache License, Version 2.0 (the "License"); you may
mbed_official 12:1ae41c231014 6 * not use this file except in compliance with the License.
mbed_official 12:1ae41c231014 7 * You may obtain a copy of the License at
mbed_official 12:1ae41c231014 8 *
mbed_official 12:1ae41c231014 9 * http://www.apache.org/licenses/LICENSE-2.0
mbed_official 12:1ae41c231014 10 *
mbed_official 12:1ae41c231014 11 * Unless required by applicable law or agreed to in writing, software
mbed_official 12:1ae41c231014 12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
mbed_official 12:1ae41c231014 13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
mbed_official 12:1ae41c231014 14 * See the License for the specific language governing permissions and
mbed_official 12:1ae41c231014 15 * limitations under the License.
mbed_official 12:1ae41c231014 16 *
mbed_official 12:1ae41c231014 17 * This file is part of mbed TLS (https://tls.mbed.org)
mbed_official 12:1ae41c231014 18 */
mbed_official 5:8275e4cee0d5 19
mbed_official 12:1ae41c231014 20 #if !defined(MBEDTLS_ENTROPY_HARDWARE_ALT) && \
mbed_official 12:1ae41c231014 21 !defined(MBEDTLS_ENTROPY_NV_SEED) && !defined(MBEDTLS_TEST_NULL_ENTROPY)
mbed_official 12:1ae41c231014 22 #error "This hardware does not have an entropy source."
mbed_official 12:1ae41c231014 23 #endif /* !MBEDTLS_ENTROPY_HARDWARE_ALT && !MBEDTLS_ENTROPY_NV_SEED &&
mbed_official 12:1ae41c231014 24 * !MBEDTLS_TEST_NULL_ENTROPY */
mbed_official 12:1ae41c231014 25
mbed_official 12:1ae41c231014 26 #define MBEDTLS_SHA1_C
mbed_official 5:8275e4cee0d5 27
mbed_official 12:1ae41c231014 28 /*
mbed_official 12:1ae41c231014 29 * This value is sufficient for handling 2048 bit RSA keys.
mbed_official 12:1ae41c231014 30 *
mbed_official 12:1ae41c231014 31 * Set this value higher to enable handling larger keys, but be aware that this
mbed_official 12:1ae41c231014 32 * will increase the stack usage.
mbed_official 12:1ae41c231014 33 */
mbed_official 12:1ae41c231014 34 #define MBEDTLS_MPI_MAX_SIZE 256
mbed_official 5:8275e4cee0d5 35
mbed_official 12:1ae41c231014 36 #define MBEDTLS_MPI_WINDOW_SIZE 1