Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Prototype RF Driver for STM Sub-1 GHz RF Expansion Boards based on the SPSGRF-868 and SPSGRF-915 Modules for STM32 Nucleo
Currently supported boards:
Note, in order to use expansion board X-NUCLEO-IDS01A4
in mbed you need to perform the following HW modifications on the board:
- Unmount resistor
R4
- Mount resistor
R7
Furthermore, on some Nucleo development boards (e.g. the NUCLEO_F429ZI), in order to be able to use Ethernet together with these Sub-1 GHz RF expansion boards, you need to compile this driver with macro SPIRIT1_SPI_MOSI=PB_5
defined, while the development board typically requires some HW modification as e.g. described here!
This driver can be used together with the 6LoWPAN stack (a.k.a. Nanostack).
source/libs/spirit1/SPIRIT1_Library/Inc/MCU_Interface.h
- Committer:
- Wolfgang Betz
- Date:
- 2017-07-06
- Revision:
- 67:93bec0baf1de
- Parent:
- 34:edda6a7238ec
File content as of revision 67:93bec0baf1de:
/** * @file MCU_Interface.h * @author VMA division - AMS * @version V2.0.2 * @date Febrary 7, 2015 * @brief Header file for low level SPIRIT SPI driver. * @details * * This header file constitutes an interface to the SPI driver used to * communicate with Spirit. * It exports some function prototypes to write/read registers and FIFOs * and to send command strobes. * Since the Spirit libraries are totally platform independent, the implementation * of these functions are not provided here. The user have to implement these functions * taking care to keep the exported prototypes. * * These functions are: * * <ul> * <li>SpiritSpiInit</i> * <li>SpiritSpiWriteRegisters</i> * <li>SpiritSpiReadRegisters</i> * <li>SpiritSpiCommandStrobes</i> * <li>SpiritSpiWriteLinearFifo</i> * <li>SpiritSpiReadLinearFifo</i> * </ul> * * @note An example of SPI driver implementation is available in the <i>Sdk_Eval</i> library. * * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. * * THIS SOURCE CODE IS PROTECTED BY A LICENSE. * FOR MORE INFORMATION PLEASE CAREFULLY READ THE LICENSE AGREEMENT FILE LOCATED * IN THE ROOT DIRECTORY OF THIS FIRMWARE PACKAGE. * * <h2><center>© COPYRIGHT 2015 STMicroelectronics</center></h2> */ /* Define to prevent recursive inclusion -------------------------------------*/ #ifndef __MCU_INTERFACE_H #define __MCU_INTERFACE_H /* Includes ------------------------------------------------------------------*/ #include "SPIRIT_Types.h" #ifdef __cplusplus extern "C" { #endif /** @addtogroup SPIRIT_Libraries * @{ */ /** @defgroup SPIRIT_SPI_Driver SPI Driver * @brief Header file for low level SPIRIT SPI driver. * @details See the file <i>@ref MCU_Interface.h</i> for more details. * @{ */ /** @defgroup SPI_Exported_Types SPI Exported Types * @{ */ /** * @} */ /** @defgroup SPI_Exported_Constants SPI Exported Constants * @{ */ /** * @} */ /** @defgroup SPI_Exported_Macros SPI Exported Macros * @{ */ /** * @} */ /** @defgroup SPI_Exported_Functions SPI Exported Functions * @{ */ typedef SpiritStatus StatusBytes; void SdkEvalSpiInit(void); StatusBytes SdkEvalSpiWriteRegisters(uint8_t cRegAddress, uint8_t cNbBytes, uint8_t* pcBuffer); StatusBytes SdkEvalSpiReadRegisters(uint8_t cRegAddress, uint8_t cNbBytes, uint8_t* pcBuffer); StatusBytes SdkEvalSpiCommandStrobes(uint8_t cCommandCode); StatusBytes SdkEvalSpiWriteFifo(uint8_t cNbBytes, uint8_t* pcBuffer); StatusBytes SdkEvalSpiReadFifo(uint8_t cNbBytes, uint8_t* pcBuffer); void SdkEvalEnterShutdown(void); void SdkEvalExitShutdown(void); SpiritFlagStatus SdkEvalCheckShutdown(void); #define SpiritEnterShutdown SdkEvalEnterShutdown #define SpiritExitShutdown SdkEvalExitShutdown #define SpiritCheckShutdown (SpiritFlagStatus)SdkEvalCheckShutdown #define SpiritSpiInit SdkEvalSpiInit #define SpiritSpiWriteRegisters(cRegAddress, cNbBytes, pcBuffer) SdkEvalSpiWriteRegisters(cRegAddress, cNbBytes, pcBuffer) #define SpiritSpiReadRegisters(cRegAddress, cNbBytes, pcBuffer) SdkEvalSpiReadRegisters(cRegAddress, cNbBytes, pcBuffer) #define SpiritSpiCommandStrobes(cCommandCode) SdkEvalSpiCommandStrobes(cCommandCode) #define SpiritSpiWriteLinearFifo(cNbBytes, pcBuffer) SdkEvalSpiWriteFifo(cNbBytes, pcBuffer) #define SpiritSpiReadLinearFifo(cNbBytes, pcBuffer) SdkEvalSpiReadFifo(cNbBytes, pcBuffer) /** * @} */ /** * @} */ /** * @} */ #ifdef __cplusplus } #endif #endif /******************* (C) COPYRIGHT 2015 STMicroelectronics *****END OF FILE****/