Skip to content
/ JaQT Public

Firmware for hardware testing platform in libopenCM3

License

Notifications You must be signed in to change notification settings

xJurgen/JaQT

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Table of Contents

  1. JaQT (Just a Quick Test)
  2. Getting Started
  3. Contributing
  4. Acknowledgements

JaQT (Just a Quick Test)

Just a Quick Test is an fw app designed for HW testing running on top of a bootloader. It can be used to test communications (usb, RS232, RS485, wiegand), read/write up to 14 GPIOs or control devices over I2C.

In fw folder are source files for JaQT (app) and bootloader. Folder sw contains Python scripts for use on top of flashed and running JaQT board.

Firmware implementation is based on user expansion board (see acknowledgments). Project can be easily modified to suit your needs.

If you find a description of "JaQT2" somewhere in this project, don't panic - this is just a newer, compatible version of the project.

Getting Started

Prerequisites

List of a software you'll need:

  • dfu-util
  • stlink-tools
  • gcc-arm-none-eabi

Preparation and bootloader upload

  1. Connect ST-LINK to the device as pictured on the image in the documentation
  2. Upload bootloader(+app) to the device (address 0x8000000):
 st-flash --reset write <chosen_bootloader.bin> 0x8000000

Compilation and flash

Following are some examples of compile and flash

  • Compile bootloader, JaQT app and merged (bootloader+app) binaries:
 make
  • Compile and flash JaQT binary for first time (ST-LINK connected):
 make flash
  • Compile and flash JaQT binary as an update (USB DFU interface):
 make flash PORT=x [BOARD_NO=y]

x stands for DFU port interface (eg. /dev/ttyACM3), y is flashed board number (eg. 3)

Another make examples can be found in short-info.md

Note: PORT=x means the shell port, eg. PORT=/dev/ttyACM3

Setting board number

After initial flash, board number is not set and requires to be set manually. To do so, open JaQT2 control interface (usually using screen on port /dev/ttyACM3 with baudrate 115200) and run command:

board_no set [number]

After successful change the board should restart itself automatically. To check if board number has been successfully changed, check board number checksum (should be 255 - [number]) using command:

board_no checksum

Acknowledgements

About

Firmware for hardware testing platform in libopenCM3

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published