Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(BLE): GCR and SIR #1120

Merged
merged 43 commits into from
Aug 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
40b0aaa
fix(CMSIS): Switch GCR BTLELDOCTRL LDOTX and LDORX fields
sihyung-maxim Jul 19, 2023
4a3a428
"Generate_Register_Files" bot updating requested register files.
sihyung-maxim Jul 19, 2023
8530ec0
fix(CMSIS): Flipped all RX/TX fields in GCR_BTLELDOCTRL register for …
sihyung-maxim Jul 21, 2023
b91592f
Merge branch 'fix/me18_gcr' of github.com:Analog-Devices-MSDK/msdk in…
sihyung-maxim Jul 21, 2023
7250f61
"Generate_Register_Files" bot updating requested register files.
sihyung-maxim Jul 21, 2023
fde23ea
fix(workflow): Delete generated register files after action completion
sihyung-maxim Jul 24, 2023
c1d77ed
Merge branch 'fix/me18_gcr' of github.com:Analog-Devices-MSDK/msdk in…
sihyung-maxim Jul 24, 2023
2f382d1
fix(CMSIS): Fix BLELDOCTRL TX/RX field positions for MAX32655
sihyung-maxim Jul 25, 2023
a3ab692
"Generate_Register_Files" bot updating requested register files.
sihyung-maxim Jul 25, 2023
0c55fe3
Revert "fix(CMSIS): Fix BLELDOCTRL TX/RX field positions for MAX32655"
sihyung-maxim Jul 25, 2023
60691c8
fix(CMSIS): Fix BLELDOCTRL TX/RX field positions for MAX32655
sihyung-maxim Jul 25, 2023
29cc569
Merge branch 'fix/me18_gcr' of github.com:Analog-Devices-MSDK/msdk in…
sihyung-maxim Jul 25, 2023
1ad5091
"Generate_Register_Files" bot updating requested register files.
sihyung-maxim Jul 25, 2023
579c373
updated BLE GCR and SIR
Aug 17, 2023
4d75bb4
Merge branch 'main' into fix/me18_gcr
sihyung-maxim Aug 17, 2023
bdbbe38
udpated gcr and sir for me14, me17, me18
EricB-ADI Aug 18, 2023
5bc4b74
"Generate_Register_Files" bot updating requested register files.
EricB-ADI Aug 18, 2023
15b20f3
gcr fix
EricB-ADI Aug 18, 2023
cb03c20
"Generate_Register_Files" bot updating requested register files.
EricB-ADI Aug 18, 2023
6087680
updated sys driver for BLE clocks
EricB-ADI Aug 18, 2023
e761e2e
fixed max32680 btle reference
Aug 21, 2023
dc12236
typecase around volatile
EricB-ADI Aug 21, 2023
761a63c
updated fcc for max32690
EricB-ADI Aug 21, 2023
304f65c
added references for AFE setup and done
EricB-ADI Aug 21, 2023
7282e7f
clang-format bot reformatting.
EricB-ADI Aug 21, 2023
ad85a57
updated 680 hart_uart
Aug 22, 2023
26d1501
restore libphy
Aug 22, 2023
64b2055
fixed bug for selection of tx powers
Aug 23, 2023
6f5605b
added api to get possible tx powers
Aug 23, 2023
f3fe2c4
clang-format bot reformatting.
EricB-ADI Aug 23, 2023
9544b6a
Fix GetClockSource Settings for ME17
sihyung-maxim Aug 16, 2024
aaeb068
Fix GetClockSource Settings for AI85
sihyung-maxim Aug 16, 2024
deaf8f0
removed tools and cherry picked reg files
EricB-ADI Feb 6, 2024
f95e15f
added versioning API
EricB-ADI Oct 11, 2023
62187e9
Merge branch 'main' into fix/ble_gcr_sir
Aug 19, 2024
fdf0508
merge deleted files
Aug 19, 2024
f195f00
Merge branch 'main' into fix/ble_gcr_sir
Aug 19, 2024
2d76b86
added get clock source declaration for 680
Aug 19, 2024
318958f
Update uart_me17.c
EricB-ADI Aug 19, 2024
26e47e0
remove ble fcc examples in favor of rf test
Aug 19, 2024
d6c6331
Revert "remove ble fcc examples in favor of rf test"
Aug 19, 2024
aed271a
remove fcc in favor of rf test
Aug 19, 2024
70c64a1
Merge branch 'fix/uart_clock' into fix/ble_gcr_sir
Aug 19, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading