Zephyr and the Memory Footprint
Do you want to use Zephyr RTOS on a Microcontroller with only a few bytes of Flash? Let's try it!
def quick_sort(arr):
less = []
pivot_list = []
more = []
if len(arr) <= 1:
return arr
else:
pass
Do you want to use Zephyr RTOS on a Microcontroller with only a few bytes of Flash? Let's try it!
def quick_sort(arr):
less = []
pivot_list = []
more = []
if len(arr) <= 1:
return arr
else:
pass