| /**************************************************************************** |
| * boards/arm/stm32/common/src/stm32_apa102.c |
| * |
| * SPDX-License-Identifier: Apache-2.0 |
| * |
| * 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. |
| * |
| ****************************************************************************/ |
| |
| /**************************************************************************** |
| * Included Files |
| ****************************************************************************/ |
| |
| #include <nuttx/config.h> |
| |
| #include <errno.h> |
| #include <debug.h> |
| #include <stdio.h> |
| |
| #include <nuttx/spi/spi.h> |
| #include <nuttx/leds/apa102.h> |
| |
| #include "stm32.h" |
| #include "stm32_spi.h" |
| |
| #ifdef CONFIG_LEDS_APA102 |
| |
| /**************************************************************************** |
| * Pre-processor Definitions |
| ****************************************************************************/ |
| |
| /**************************************************************************** |
| * Private Types |
| ****************************************************************************/ |
| |
| /**************************************************************************** |
| * Private Function Prototypes |
| ****************************************************************************/ |
| |
| /**************************************************************************** |
| * Private Data |
| ****************************************************************************/ |
| |
| /**************************************************************************** |
| * Public Data |
| ****************************************************************************/ |
| |
| /**************************************************************************** |
| * Private Functions |
| ****************************************************************************/ |
| |
| /**************************************************************************** |
| * Public Functions |
| ****************************************************************************/ |
| |
| /**************************************************************************** |
| * Name: board_apa102_initialize |
| * |
| * Description: |
| * Initialize and register the APA102 LED Strip driver. |
| * |
| * Input Parameters: |
| * devno - The device number, used to build the device path as /dev/leddrvN |
| * spino - SPI port number |
| * |
| * Returned Value: |
| * Zero (OK) on success; a negated errno value on failure. |
| * |
| ****************************************************************************/ |
| |
| int board_apa102_initialize(int devno, int spino) |
| { |
| struct spi_dev_s *spi; |
| char devpath[13]; |
| int ret; |
| |
| spi = stm32_spibus_initialize(spino); |
| if (spi == NULL) |
| { |
| return -ENODEV; |
| } |
| |
| /* Register the APA102 Driver at the specified location. */ |
| |
| snprintf(devpath, sizeof(devpath), "/dev/leddrv%d", devno); |
| ret = apa102_register(devpath, spi); |
| if (ret < 0) |
| { |
| lederr("ERROR: apa102_register(%s) failed: %d\n", |
| devpath, ret); |
| return ret; |
| } |
| |
| return OK; |
| } |
| |
| #endif |