Skip to content

Commit

Permalink
Merge pull request #12 from Avnet/release-1.2.0
Browse files Browse the repository at this point in the history
Updates for release 1.2.0
  • Loading branch information
bawilless authored Aug 9, 2023
2 parents c88409e + e7f0526 commit 14cb108
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 14 deletions.
15 changes: 7 additions & 8 deletions docs/testPlan.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,13 @@ This document captures the minimal test plan to complete before releasing new co
1. Test the record option feature (short user button press)
1. Green LED lights up while recording
1. Green LED turns off after recording stops
1. Pull *.wav file from microSD card
1. View the *.wav file on microSD card
1. Verify the audio recording
1. Press the user button > 3 seconds
1. Verify the red LED turns on
1. Verify NDP120 images are written to flash
1. Verify the red LED turns off
1. Remove the microSD card and test the 5-keywords again
1. Change config.ini: [Low Power Mode] -> Power_Mode=1
1. Power up the board with the microSD card inserted
1. Verify board enters low-power mode on startup
1. Speak one of the 5-keywords and verify that the device enters low-power mode after each keyword is detected
1. If you have the dual microphone hardware test [NDP Firmware] --> Mode=2
1. Run the default configuration
1. Test the 5-keywords
Expand All @@ -53,6 +49,9 @@ This document captures the minimal test plan to complete before releasing new co
1. set [IMU data stream]--> Write_to_file=1
1. Run the application with the new configuration
1. Press the user button
1. Verify that sensor data is output to the debug uart for 30 seconds
1. Remove the microSD card verify that a csv file was created and contains sensor data

1. Verify that sensor data is output to the debug uart for 10 seconds
1. View the microSD card files and verify that a csv file was created and contains sensor data
1. Change config.ini: [Low Power Mode] -> Power_Mode=1
1. Power up the board with the microSD card inserted
1. Verify board enters low-power mode on startup
1. Speak one of the 5-keywords and verify that the device enters low-power mode after each keyword is detected
5 changes: 1 addition & 4 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,7 @@ The Out-of-Box (OOB) application's goal is to "Provide a working example applica

## Application Errata

This section lists the currently known and documented issues with the application

1. Recording IMU data to the microSD card is currently not working
1. Outputting IMU data to the debug serial port is not currently working
Please refer to the [Release Notes](./releaseNotes.md) for details on known issues with this release

# Getting Started

Expand Down
14 changes: 14 additions & 0 deletions releaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Release Notes for the Avnet Out-of-Box Application

## Version: 1.2.0
Release type: Feature Release

### New Features
- AABGT-60: Added USB PMSC feature to expose the RASynBoard's microSD card to the development PC when connected to the RASynBoard USB-C connector on the core board. This allows the developer to modify the config.ini file without removing the microSD card from the RASynBoard. Additionally audio (*.wav) and imu (*.csv) recording files can be copied from the microSD card without removing the microSD card from the RASynBoard.
- AABGT-50: Added new config.ini entry [BLE Mode] --> BLE_Enabled=x to control the application broadcasting inference results over BLE. The feature defaults to off (don't send inference results over BLE)

### Bug Fixes
- AABGT-63: When [Low Power Mode] --> Power_Mode=1 is enabled, the application will automatically enter low power mode after startup. Note when this feature is enabled the USB PMSC feature is not avaliable since the device stays in low power mode until an inference result is detected.
- AABGT-70: Corrected an issue where audio and imu capture files on the microSD card would be overwritten if the application was restarted.

### Known Issues
- AABGT-72: If the microSD card does not have any files the USB PMSC feature fails.

## Version: 1.1.0
Release type: Feature Release

Expand Down
4 changes: 2 additions & 2 deletions src/version_string.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@
#define MAJOR_VERSION "1"

// Increment Minor Version when new features are added
#define MINOR_VERSION "0"
#define MINOR_VERSION "2"

// Increment Build Version when Major and Minor versions do not change
// If Major or Minor versions change, reset BUILD_VERSION to 0
#define BUILD_VERSION "0"
#define DOT "."

#define VERSION_STRING MAJOR_VERSION DOT MINOR_VERSION DOT BUILD_VERSION
#define RELEASE_DATE "7/7/23"
#define RELEASE_DATE "8/10/23"

#endif /* VERSION_STRING_H_ */

0 comments on commit 14cb108

Please sign in to comment.