Skip to content

Commit 6d8f4b2

Browse files
committed
projects: eval-powrms: add firmware
Eval-powrms is an evaluation kit built around ADL5920 which is an ultrawideband, bidirectional detector that simultaneously measures forward and reverse rms power levels in a signal path, along with the return loss. The firmware allows user to interact with setting and calibration via IIO or buttons on the PCB and can produce result both via embedded display or IIO. Signed-off-by: rbudai98 <robert.budai@analog.com>
1 parent de8f3e9 commit 6d8f4b2

35 files changed

+7463
-0
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.. include:: ../../../../../projects/eval-powrms/README.rst

projects/eval-powrms/Makefile

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
LIBRARIES += lvgl
2+
IIOD=y
3+
4+
PLATFORM=maxim
5+
TARGET=max32662
6+
7+
SRCS += $(PROJECT)/src/common/syscalls.c
8+
9+
include ../../tools/scripts/generic_variables.mk
10+
11+
HEAP_SIZE=0x90000
12+
STACK_SIZE=0x10000
13+
14+
include src.mk
15+
16+
CFLAGS += -Os -ffunction-sections -fdata-sections -fno-strict-aliasing
17+
LDFLAGS += -Wl,--gc-sections
18+
19+
include ../../tools/scripts/generic.mk

0 commit comments

Comments
 (0)