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
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