nuttx-apps/examples/leds_rust/Makefile
Rushabh Gala 437c903c47 examples/leds_rust: Add Rust App for blinking the LED
- This PR adds `examples/leds_rust` to call NuttX POSIX APIs like `open()` and `ioctl()`, so that it blinks an LED
- The `leds_rust` app is also used for testing the GPIO and LED Drivers for Ox64 BL808 SBC and QEMU RISC-V Emulator in Google Summer of Code
- `leds_rust` be executed locally on Linux / macOS / Windows, by commenting out the first 2 lines of code
- The code is based on `examples/leds` in C, and `examples/hello_rust` in Rust

Co-Authored-By: Lup Yuen Lee <9960133+lupyuen@users.noreply.github.com>
2024-08-06 00:26:44 +08:00

37 lines
1.3 KiB
Makefile

############################################################################
# apps/examples/leds_rust/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
# Hello, Rust! built-in application info
PROGNAME = $(CONFIG_EXAMPLES_LEDS_RUST_PROGNAME)
PRIORITY = $(CONFIG_EXAMPLES_LEDS_RUST_PRIORITY)
STACKSIZE = $(CONFIG_EXAMPLES_LEDS_RUST_STACKSIZE)
MODULE = $(CONFIG_EXAMPLES_LEDS_RUST)
# Hello, Rust! Example
MAINSRC = leds_rust_main.rs
RUSTFLAGS += -C panic=abort -O
include $(APPDIR)/Application.mk