Skip to content

Commit 4822ac5

Browse files
author
Martin Kojtal
committed
cypress: fix cy_syslib breakpoint undefined
CMSIS 5.8.0 requires for armcc to include compat header prior any other header. See Known issues for the release.
1 parent c122158 commit 4822ac5

File tree

1 file changed

+3
-0
lines changed
  • targets/TARGET_Cypress/TARGET_PSOC6/mtb-pdl-cat1/drivers/source

1 file changed

+3
-0
lines changed

targets/TARGET_Cypress/TARGET_PSOC6/mtb-pdl-cat1/drivers/source/cy_syslib.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@
2121
* See the License for the specific language governing permissions and
2222
* limitations under the License.
2323
*******************************************************************************/
24+
#if defined(__ARMCC_VERSION)
25+
#include <arm_compat.h>
26+
#endif
2427

2528
#include "cy_device.h"
2629

0 commit comments

Comments
 (0)