Saving Data to Flash on RAK3272S

If I want to store small amounts of data that persists on device restart what would be the best way to do so? E.g. timer duration parameters that can be modified via downlinks.

The easiest way is to use the api.system.flash function

API Guide

api.system.flash.get(offset, buf, len);
api.system.flash.set(offset, buf, len)
1 Like

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.