This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Keep getting assertion errors when casting typedef struct to uint8_t *

Update: Was me being a dumb ass and calling the advertising start higher up in code that I thought I disabled.  After truly disabling the BLE, I was able to debug and found my problem that eventually was later down in a method inside CAN_Send that was actually causing the other faults.  The lesson to learn here, truly understand softdevices before trying to debug more.


Just trying to figure out why getting an assertion error, tested on other platforms and the code compiles and operates fine but does not work.  Using the BLE example softdevice and expanding it to operate with CAN.

Here's the declaration of the function I'm calling:

bool CAN_Send(uint32_t id, uint8_t* msg, uint8_t length);

And here's the structure I've defined:

typedef struct
{
	uint8_t frameAndCount;
	uint8_t data[7];
} uds_msg;

And here's how I'm passing it:

CAN_Send(txId, ((uint8_t*) &outGoingMsgs[currentMsgIndex++]), length);

Getting an assertion error while trying to step into the method call, not sure why, like I've said in the title I've tested this on other platforms (FTDI, STM32, and regular C compiled for Unix) so as far as C goes it should operate fine, I must be missing something as far as how the nordic softdevices or compiler operates.  I'm not trying to rewrite all my libraries for this platform as they are fairly tested and operate 100% fine in the field, so trying to connect the dots while maintaining 100% operational code.  Any help is greatly appreciated, I'm sure it's gotta be something simple that I'm overlooking.

Parents
  • Hello,

    What sort of assertion do you get? Is it the error handler in the SDK? Or some other assert? Can you show me how it looks when you are debugging?

    Are you sure the issue is not that you step through the code while the softdevice is running? If you stop when the softdevice is either connected to something, advertising or scanning, the application will assert, because the Softdevice will miss a lot of time critical events. Does it happen when you aren't debugging as well?

    Best regards,

    Edvin

  • I can verify that it happens at that point, as I've tried to put a breakpoint after this call and it never gets there.  Also, if I remove this call allows me to debug as I'm calling it before advertising starts.

    It's an assertion that is apart of the SDK.  It's erroring out on app_error_fault_handler with an id of 1 and pc at 0x00015520

    I've changed it to not using typedef structs and it operates fine, it's only when casting typedef structs to uint8_t*  Is there a better way to track down where the assertion is happening so I can see which part of the SDK is causing the error to be thrown?

  • Ok. I see. Can you try to define "DEBUG" in your preprocessor defines? (Let me know if you are not sure how to do this). Then monitor your log, it should give some more info than the PC at 0x00015520. It should point to one of the APP_ERROR_CHECK(err_code). Which one does it point to, and what function call did that err_code come from? And what was err_code?

Reply Children
No Data
Related