Shahariar
Published © Apache-2.0

Programming QuickFeather in Zephyr (Linux)

This is a guide how to program and flash QuickFeather Development board in Zephyr environment.

AdvancedProtip6 hours996
Programming QuickFeather in Zephyr (Linux)

Things used in this project

Hardware components

QuickFeather Development Kit
QuickLogic Corp. QuickFeather Development Kit
×1
usb to ttl cp2102 adapter
×1

Software apps and online services

Zephyr RTOS
Zephyr Project Zephyr RTOS

Story

Read more

Schematics

Schematic

https://github.com/QuickLogic-Corp/quick-feather-dev-board/blob/master/doc/QuickFeather_UserGuide.pdf

Code

main.c

C/C++
hello world demo on serial monitor
/*
 * Copyright (c) 2012-2014 Wind River Systems, Inc.
 *
 * SPDX-License-Identifier: Apache-2.0
 */

#include <zephyr.h>
#include <sys/printk.h>

void main(void)
{
	printk("HELLO IF IT EVER WORK %s\n", CONFIG_BOARD); // <-- change here 
	printk("HELLO IT WORKED !!! %s\n", CONFIG_BOARD);
	
}

Credits

Shahariar

Shahariar

71 projects • 262 followers
"What Kills a 'Great life' is a 'Good Life', which is Living a Life Inside While Loop"

Comments