/windows-iot-bus-tools

Command line tools to poke at Gpio, I2c, Spi, and Serial on Windows IoT Core and Windows Desktop

Primary LanguageC++MIT LicenseMIT

Windows IoT Bus Tools

This repo contains tools that let you interact with Gpio, I2c, Spi, and UART on the command line. They will run on any edition of Windows, including Windows IoT Core and Windows Enterprise. The tools are:

  • GpioTestTool
  • I2cTestTool
  • SpiTestTool
  • MinComm (UART)

Building

  1. Download Visual Studio 2017. Select options for C++, Windows UWP, and Windows Desktop app development. You may need to download the latest version of the Windows SDK.
  2. From the start menu, run Developer Command Prompt for VS 2017
  3. Navigate to the root of this repository and run:
    msbuild /p:Platform=ARM /p:Configuration=Release

Valid values of Platform are: ARM, x86, x64

Valid values of Configuration are: Release, Debug