Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions examples/ampcam/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#

config EXAMPLES_AMPCAM
tristate "AMP shared-memory camera viewer"
default n
---help---
Read frames that the Linux side captured and published in the AMP
shared carveout, and either draw them to the framebuffer or just
report what the transport is doing.

Needs a board that provides /dev/amcam0 - currently the RK3588
EVB7 AMP configuration.

if EXAMPLES_AMPCAM

config EXAMPLES_AMPCAM_PROGNAME
string "Program name"
default "ampcam"

config EXAMPLES_AMPCAM_PRIORITY
int "Task priority"
default 100

config EXAMPLES_AMPCAM_STACKSIZE
int "Stack size"
default DEFAULT_TASK_STACKSIZE

endif
23 changes: 23 additions & 0 deletions examples/ampcam/Make.defs
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
############################################################################
# apps/examples/ampcam/Make.defs
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership. The
# ASF licenses this file to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance with the
# License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
#
############################################################################

ifneq ($(CONFIG_EXAMPLES_AMPCAM),)
CONFIGURED_APPS += $(APPDIR)/examples/ampcam
endif
32 changes: 32 additions & 0 deletions examples/ampcam/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
############################################################################
# apps/examples/ampcam/Makefile
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership. The
# ASF licenses this file to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance with the
# License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
#
############################################################################

include $(APPDIR)/Make.defs

# AMP shared-memory camera viewer

PROGNAME = $(CONFIG_EXAMPLES_AMPCAM_PROGNAME)
PRIORITY = $(CONFIG_EXAMPLES_AMPCAM_PRIORITY)
STACKSIZE = $(CONFIG_EXAMPLES_AMPCAM_STACKSIZE)
MODULE = $(CONFIG_EXAMPLES_AMPCAM)

MAINSRC = ampcam_main.c

include $(APPDIR)/Application.mk
Loading
Loading