Skip to content

Commit

Permalink
fix(BLE): GCR and SIR (#1120)
Browse files Browse the repository at this point in the history
Co-authored-by: Sihyung Woo <sihyung.woo@analog.com>
Co-authored-by: sihyung-maxim <sihyung-maxim@users.noreply.github.com>
Co-authored-by: EricB-ADI <eric.busch@analogdevices.com>
Co-authored-by: EricB-ADI <EricB-ADI@users.noreply.github.com>
Co-authored-by: Sihyung Woo <75494566+sihyung-maxim@users.noreply.github.com>
  • Loading branch information
6 people committed Aug 19, 2024
1 parent fb3ae96 commit 51ec9ad
Show file tree
Hide file tree
Showing 90 changed files with 1,246 additions and 17,921 deletions.
23 changes: 22 additions & 1 deletion .github/workflows/Verify_Register_SVD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -655,5 +655,26 @@ jobs:
fi
done
set -e
# Remove generated register files for next time a runner picks up the job.
# The register files generated in a previous instance will remain and won't
# be regenerated because the Wall-E doesn't refresh its workspace and this
# workflow only generates the register files for a specific part only once
# (to save time) by checking whether the generated register files exist or not.
cd ${{ env.MSDK-INTERNAL_DIR }}/SVD/Devices/
# Enter each directory and remove ./chip_test/
for file_dir in *
do
# Don't mess with files.
[[ -d $file_dir ]] || continue
if [[ ${DIE_TO_CHIP_NAMES[$file_dir]+_} ]]; then
rm -rf ./${file_dir}/chip_test/
fi
done
# Return to workspace
cd ../../../
exit $CHECK_FAIL
93 changes: 0 additions & 93 deletions Examples/MAX32655/Bluetooth/BLE_fcc/.cproject

This file was deleted.

26 changes: 0 additions & 26 deletions Examples/MAX32655/Bluetooth/BLE_fcc/.project

This file was deleted.

This file was deleted.

Loading

0 comments on commit 51ec9ad

Please sign in to comment.