Brian Esquilona

Results 20 comments of Brian Esquilona

@cwq9999 you can still try pyocd to reflash it, just that you will need to add your board in the pyocd database. https://github.com/mbedmicro/pyOCD

@cwq9999 you can try the mbedcli approach for this, just make sure that you can compile with armcc, al you need is to set the path of the compiler.

@cwq9999 lpc11u3_stm32l476rg_if should be lpc11u35_stm32l476rg_if

@cwq9999 Did you updated to the latest codes, and enable the under reset [PORT_BOARD.md](https://github.com/ARMmbed/DAPLink/blob/master/docs/PORT_BOARD.md)

@cwq9999, what was the error in the DAPLink drive, can you paste the contents of FAIL.TXT or ASSERT.TXT, another test that you can do, is, you can use uvision, and...

@cwq9999, it should not have as most of the flash algo have blank uninit. But please verify, the error will be easy to spot like uninit error. // ERROR_UNINIT "The...

Add a family that adds target_before_init_debug and assert the target reset (swd_set_target_reset(1)) inside the family descriptor.

sample files are in source/family/\*/target_reset\*.c Your family file will look like this, and include it your project static void target_before_init_debug(void) { swd_set_target_reset(1); } const target_family_descriptor_t g_test_family = { .family_id =...

Yes, switching to RTX5 will have size increase but bootloaders are already in the no-rtos codes, so only the interface codes will need to be migrated. All the interfaces/headers conforms...