Marcus Chang

Results 9 comments of Marcus Chang

@ccli8 Can you share the compile errors you are seeing, please? Even without FlashIAP, the function should still be available: https://github.com/ARMmbed/mbed-os/blob/master/storage/kvstore/kv_config/source/kv_config.cpp#L1002-L1004

@ccli8 Would this work for you instead? ``` int status = kv_init_storage_config(); if (status != MBED_SUCCESS) { #ifdef MBED_CONF_MBED_CLOUD_CLIENT_PSA_SUPPORT if (status == MBED_ERROR_UNSUPPORTED) { printf("PSA enabled, ignore kv_init_storage_config() is not...

@ccli8 Sorry, I can see my message was ambiguous. I've made the changes to our internal repository and it should be part of one of the next releases. I'll close...

I'm not particular fond of the current onDataRead, onDataWritten and onDataSent callbacks because all subscribers get notified whether or not the event is relevant for them. For example, if I...

The problem I've been running into is how to make compartmentalized modules that run concurrently. I'm using `onLinkSecured` to indicate whether a connection is secured. I've have not found use...

Why not remove FunctionPointerWithContext completely and switch to the new FunctionPointer class in core-util? Maintaining two function pointer classes seems like a waste of resources.

The new function pointers only depend on the standard library. Manually copy-pasting them would still be easier than maintaining a parallel function pointer class.

A better question is, when are we going to feature freeze mbed classic (and only do bug support) and focus all our effort on mbed OS?