Andras Fekete 717a32808f Fix missing include 3 weeks ago
..
client 9dcc48c8f7 update copyright to 2023 1 year ago
server 9dcc48c8f7 update copyright to 2023 1 year ago
shared 717a32808f Fix missing include 3 weeks ago
wolfssl_new_azsphere 54f2d56300 ssl.c: Move out crypto compat APIs 4 months ago
README.md 30d836dc90 Implement peer review feedback 1 year ago
include.am 873b2169f9 Add readme to include.am 1 year ago
user_settings.h 9dcc48c8f7 update copyright to 2023 1 year ago

README.md

wolfSSL for Microsoft Azure Sphere Devices in MSVS 2019

Description

This directory contains the Visual Studio CMake Project that is targeted for the visual studio 2019 Azure Sphere plugin.

Limitations

The example includes a client and server executable but the main.c app only runs the server by default. main.c can be manually modified to run the client instead if desired.

By default the main.c app include the hardware definitions for MT3620-mini. It can be manually modified to include hardware definitions for MT3620, or avnet MT3620 instead.

The app relies on a wolfSSL static library project, app and library are built by the CMakeLists.txt located in IDE/MSVS-2019-AZSPHERE/wolfssl_new_azsphere/CMakeLists.txt. The library and app use user_settings.h to enable and disable features.

Set Up Steps

  1. Setup your Azure Sphere device. Install Azure Sphere Set up an account Claim your device Configure networking

  2. Open the local folder IDE/MSVS-2019-AZSPHERE/wolfssl_new_azsphere in MSVS 2019

  3. From the file menu select "Build" dropdown

    • Click: Rebuild All option
  4. Connect your Azure Sphere MT3620-mini Development Board using USB.

  5. Test the server.

    • Run server(Azure Sphere) using: Debug->'Start new instance'
    • Run the following wolfSSL example client command inside wolfssl directory.

      ./examples/client/client -h "Server IP Address" -p 11111 -A ./certs/ca-cert.pem
      

For other information please refer to the README in IDE/VS-AZURE-SPHERE