Zephyr and the Memory Footprint

From chriesibaum wiki
Revision as of 17:41, 25 January 2021 by PTH (talk | contribs) (Created page with "Do you want to use [https://zephyrproject.org/ Zephyr RTOS] on a Microcontroller with only a few bytes of Flash? Let's try it! <syntaxhighlight lang="python" line='line'> def...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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