Mbed Client sample for GR-LYCHEE where ZXing is incorporated.

Dependencies:   DisplayApp AsciiFont

Fork of GR-PEACH_mbed-os-client-ZXingSample by Renesas

Overview

This sample program shows how to use mbed Client together with ZXing which is an open-source, multi-format 1D/2D barcode image processing library. For more info on ZXing, please refer to https://github.com/zxing/zxing.

Required hardware

Application setup

  1. Select the connection type. For details, please refer to the following wiki:
    https://os.mbed.com/users/1050186/code/GR-LYCHEE_mbed-os-client-ZXingSample/wiki/Connection-type.
  2. Set the client credentials. For details, please refer to the following wiki:
    https://os.mbed.com/users/1050186/code/GR-LYCHEE_mbed-os-client-ZXingSample/wiki/Client-credentials.
  3. Change Wifi settings. For details, please refer to the following wiki:
    https://os.mbed.com/users/1050186/code/GR-LYCHEE_mbed-os-client-ZXingSample/wiki/Wifi-settings.

Building the example

To build this example:

  1. Import this example onto mbed Compiler.
  2. Configure the example in accordance with Application setup.
  3. Compile the example on mbed Compiler and download the resultant binary file.
  4. Plug the micro-USB cable into the OpenSDA port which lies on the next to the RESET button.
  5. Copy the binary previously downloaded to your PC to GR-LYCHEE to flash this example. When the copy is successfully completed, the board is ready to work.
  6. Press the RESET button on the board to run the example.
  7. For verification, please refer to the following wiki:
    https://os.mbed.com/users/1050186/code/GR-LYCHEE_mbed-os-client-ZXingSample/wiki/Monitoring-the-application.

Application resources

This example exposes four resources listed below:

  1. 3202/0/5700. Decode result of barcode data input from camera (GET).
  2. 3201/0/5850. Blink function, blinks LED when executed (POST).
  3. 3201/0/5853. Blink pattern, used by the blink function to determine how to blink. In the format of 1000:500:1000:500:1000:500 (PUT).
  4. 3201/0/5855. Blink color, used by the blink function. Any of green, yellow, orange and red is acceptable (PUT).
Committer:
<>
Date:
Thu Oct 06 18:00:30 2016 +0900
Revision:
0:eb73febb2bba
Child:
2:6ec5c1c1d41c
Initial Commit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
<> 0:eb73febb2bba 1 /*
<> 0:eb73febb2bba 2 * Minimal configuration for using mbedtls as part of mbed-client
<> 0:eb73febb2bba 3 *
<> 0:eb73febb2bba 4 * Copyright (C) 2006-2016, ARM Limited, All Rights Reserved
<> 0:eb73febb2bba 5 * SPDX-License-Identifier: Apache-2.0
<> 0:eb73febb2bba 6 *
<> 0:eb73febb2bba 7 * Licensed under the Apache License, Version 2.0 (the "License"); you may
<> 0:eb73febb2bba 8 * not use this file except in compliance with the License.
<> 0:eb73febb2bba 9 * You may obtain a copy of the License at
<> 0:eb73febb2bba 10 *
<> 0:eb73febb2bba 11 * http://www.apache.org/licenses/LICENSE-2.0
<> 0:eb73febb2bba 12 *
<> 0:eb73febb2bba 13 * Unless required by applicable law or agreed to in writing, software
<> 0:eb73febb2bba 14 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
<> 0:eb73febb2bba 15 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
<> 0:eb73febb2bba 16 * See the License for the specific language governing permissions and
<> 0:eb73febb2bba 17 * limitations under the License.
<> 0:eb73febb2bba 18 *
<> 0:eb73febb2bba 19 * This file is part of mbed TLS (https://tls.mbed.org)
<> 0:eb73febb2bba 20 */
<> 0:eb73febb2bba 21
<> 0:eb73febb2bba 22
<> 0:eb73febb2bba 23 #ifndef MBEDTLS_CUSTOM_CONFIG_H
<> 0:eb73febb2bba 24 #define MBEDTLS_CUSTOM_CONFIG_H
<> 0:eb73febb2bba 25
<> 0:eb73febb2bba 26 /* System support */
<> 0:eb73febb2bba 27 #define MBEDTLS_HAVE_ASM
<> 0:eb73febb2bba 28
<> 0:eb73febb2bba 29 /* mbed TLS feature support */
<> 0:eb73febb2bba 30 #define MBEDTLS_ECP_DP_SECP256R1_ENABLED
<> 0:eb73febb2bba 31 #define MBEDTLS_ECP_NIST_OPTIM
<> 0:eb73febb2bba 32 #define MBEDTLS_SSL_MAX_FRAGMENT_LENGTH
<> 0:eb73febb2bba 33 #define MBEDTLS_SSL_PROTO_TLS1_2
<> 0:eb73febb2bba 34 #define MBEDTLS_SSL_PROTO_DTLS
<> 0:eb73febb2bba 35 #define MBEDTLS_SSL_DTLS_ANTI_REPLAY
<> 0:eb73febb2bba 36 #define MBEDTLS_SSL_DTLS_HELLO_VERIFY
<> 0:eb73febb2bba 37 #define MBEDTLS_SSL_EXPORT_KEYS
<> 0:eb73febb2bba 38
<> 0:eb73febb2bba 39 /* mbed TLS modules */
<> 0:eb73febb2bba 40 #define MBEDTLS_AES_C
<> 0:eb73febb2bba 41 #define MBEDTLS_ASN1_PARSE_C
<> 0:eb73febb2bba 42 #define MBEDTLS_ASN1_WRITE_C
<> 0:eb73febb2bba 43 #define MBEDTLS_BIGNUM_C
<> 0:eb73febb2bba 44 #define MBEDTLS_CCM_C
<> 0:eb73febb2bba 45 #define MBEDTLS_CIPHER_C
<> 0:eb73febb2bba 46 #define MBEDTLS_CTR_DRBG_C
<> 0:eb73febb2bba 47 #define MBEDTLS_ECP_C
<> 0:eb73febb2bba 48 #define MBEDTLS_ENTROPY_C
<> 0:eb73febb2bba 49 #define MBEDTLS_MD_C
<> 0:eb73febb2bba 50 #define MBEDTLS_OID_C
<> 0:eb73febb2bba 51 #define MBEDTLS_PK_C
<> 0:eb73febb2bba 52 #define MBEDTLS_PK_PARSE_C
<> 0:eb73febb2bba 53 #define MBEDTLS_SHA256_C
<> 0:eb73febb2bba 54 #define MBEDTLS_SSL_COOKIE_C
<> 0:eb73febb2bba 55 #define MBEDTLS_SSL_CLI_C
<> 0:eb73febb2bba 56 #define MBEDTLS_SSL_SRV_C
<> 0:eb73febb2bba 57 #define MBEDTLS_SSL_TLS_C
<> 0:eb73febb2bba 58
<> 0:eb73febb2bba 59 // XXX mbedclient needs these: mbedtls_x509_crt_free, mbedtls_x509_crt_init, mbedtls_x509_crt_parse
<> 0:eb73febb2bba 60 #define MBEDTLS_X509_USE_C
<> 0:eb73febb2bba 61 #define MBEDTLS_X509_CRT_PARSE_C
<> 0:eb73febb2bba 62 // a bit wrong way to get mbedtls_ssl_conf_psk:
<> 0:eb73febb2bba 63 // XXX: this should be ifdef'd out from client too
<> 0:eb73febb2bba 64 #define MBEDTLS_KEY_EXCHANGE__SOME__PSK_ENABLED
<> 0:eb73febb2bba 65
<> 0:eb73febb2bba 66 // XXX: clean these up!!
<> 0:eb73febb2bba 67 #define MBEDTLS_KEY_EXCHANGE__WITH_CERT__ENABLED
<> 0:eb73febb2bba 68 #define MBEDTLS_KEY_EXCHANGE__SOME__ECDHE_ENABLED
<> 0:eb73febb2bba 69 #define MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED
<> 0:eb73febb2bba 70 #define MBEDTLS_SHA512_C
<> 0:eb73febb2bba 71 #define MBEDTLS_ECDH_C
<> 0:eb73febb2bba 72 #define MBEDTLS_GCM_C
<> 0:eb73febb2bba 73 #define MBEDTLS_CCM_C
<> 0:eb73febb2bba 74
<> 0:eb73febb2bba 75 #define MBEDTLS_PKCS1_V15
<> 0:eb73febb2bba 76
<> 0:eb73febb2bba 77 #define MBEDTLS_CIPHER_MODE_CBC
<> 0:eb73febb2bba 78 #define MBEDTLS_ECDH_C
<> 0:eb73febb2bba 79 #define MBEDTLS_ECDSA_C
<> 0:eb73febb2bba 80 #define MBEDTLS_X509_CRT_PARSE_C
<> 0:eb73febb2bba 81
<> 0:eb73febb2bba 82 // Remove RSA, save 20KB at total
<> 0:eb73febb2bba 83 #undef MBEDTLS_RSA_C
<> 0:eb73febb2bba 84 #undef MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED
<> 0:eb73febb2bba 85
<> 0:eb73febb2bba 86 // Remove error messages, save 10KB of ROM
<> 0:eb73febb2bba 87 #undef MBEDTLS_ERROR_C
<> 0:eb73febb2bba 88
<> 0:eb73febb2bba 89 // Remove selftesting and save 11KB of ROM
<> 0:eb73febb2bba 90 #undef MBEDTLS_SELF_TEST
<> 0:eb73febb2bba 91
<> 0:eb73febb2bba 92 #undef MBEDTLS_SSL_COOKIE_C
<> 0:eb73febb2bba 93
<> 0:eb73febb2bba 94 // Reduces ROM size by 30 kB
<> 0:eb73febb2bba 95 #undef MBEDTLS_ERROR_STRERROR_DUMMY
<> 0:eb73febb2bba 96 #undef MBEDTLS_VERSION_FEATURES
<> 0:eb73febb2bba 97 #undef MBEDTLS_DEBUG_C
<> 0:eb73febb2bba 98
<> 0:eb73febb2bba 99 // needed for parsing the certificates
<> 0:eb73febb2bba 100 #define MBEDTLS_PEM_PARSE_C
<> 0:eb73febb2bba 101 // dep of the previous
<> 0:eb73febb2bba 102 #define MBEDTLS_BASE64_C
<> 0:eb73febb2bba 103
<> 0:eb73febb2bba 104 // reduce IO buffer to save RAM, default is 16KB
<> 0:eb73febb2bba 105 #define MBEDTLS_SSL_MAX_CONTENT_LEN 2048
<> 0:eb73febb2bba 106
<> 0:eb73febb2bba 107 // define to save 8KB RAM at the expense of ROM
<> 0:eb73febb2bba 108 #undef MBEDTLS_AES_ROM_TABLES
<> 0:eb73febb2bba 109
<> 0:eb73febb2bba 110 // Save ROM and a few bytes of RAM by specifying our own ciphersuite list
<> 0:eb73febb2bba 111 #define MBEDTLS_SSL_CIPHERSUITES MBEDTLS_TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,MBEDTLS_TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256
<> 0:eb73febb2bba 112
<> 0:eb73febb2bba 113 #include "mbedtls/check_config.h"
<> 0:eb73febb2bba 114
<> 0:eb73febb2bba 115 #endif /* MBEDTLS_CUSTOM_CONFIG_H */