Get memory status

 1
 2'''
 3System - get_memory_status.py.
 4
 5This example project shows how to get flash memory.
 6
 7For other examples please check:
 8    https://github.com/WPC-Systems-Ltd/WPC_Stand-alone_Python_release/tree/main/examples
 9
10Copyright (c) 2024 WPC Systems Ltd.
11All rights reserved.
12
13'''
14
15## WPC
16import pywpc
17
18flash_size = pywpc.Sys_getFlashSize()
19print(flash_size)