8000 kl27z: Increase DAP_PACKET_COUNT to 8. by microbit-carlos · Pull Request #1098 · ARMmbed/DAPLink · GitHub
[go: up one dir, main page]

Skip to content

kl27z: Increase DAP_PACKET_COUNT to 8. #1098

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

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
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
kl27z: Increase DAP_PACKET_COUNT to 8.
This is to match the same DAP queue length for micro:bit V2.00,
to the same length as configured in V2.2x.
  • Loading branch information
microbit-carlos committed Feb 13, 2025
commit 5d1f9e84a21c94d1623470c515e594ded9f47a12
2 changes: 1 addition & 1 deletion source/board/kl27z_bl.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ static const sector_info_t sectors_info[] = {
{DAPLINK_ROM_IF_START, 1024},
};

// kl26z128 target information
// kl27z target information
target_cfg_t target_device = {
.version = kTargetConfigVersion,
.sectors_info = sectors_info,
Expand Down
2 changes: 1 addition & 1 deletion source/board/kl27z_microbit_bl.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ static const sector_info_t sectors_info[] = {
{DAPLINK_ROM_IF_START, 1024},
};

// kl26z128 target information
// kl27z target information
target_cfg_t target_device = {
.version = kTargetConfigVersion,
.sectors_info = sectors_info,
Expand Down
2 changes: 1 addition & 1 deletion source/hic_hal/freescale/kl27z/DAP_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ This information includes:
/// This configuration settings is used to optimize the communication performance with the
/// debugger and depends on the USB peripheral. For devices with limited RAM or USB buffer the
/// setting can be reduced (valid range is 1 .. 255). Change setting to 4 for High-Speed USB.
#define DAP_PACKET_COUNT 5 ///< Buffers: 64 = Full-Speed, 4 = High-Speed.
#define DAP_PACKET_COUNT 8 ///< Buffers: 64 = Full-Speed, 4 = High-Speed.

/// Indicate that UART Serial Wire Output (SWO) trace is available.
/// This information is returned by the command \ref DAP_Info as part of <b>Capabilities</b>.
Expand Down
Loading
0