- BLE peripheral applications - dr_piezo and bladder_patch projects Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
26 lines
675 B
C
26 lines
675 B
C
/*******************************************************************************
|
|
* @file ada2200_spi.h
|
|
* @author CandyPops Co.
|
|
* @version V1.0.0
|
|
* @date 2022-09-05
|
|
* @brief
|
|
******************************************************************************/
|
|
|
|
#ifndef _ADA2200_SPI_H_
|
|
#define _ADA2200_SPI_H_
|
|
|
|
#define SPI_INSTANCE 2 /**< SPI instance index. */
|
|
|
|
#define SPI_MOSI_PIN 16
|
|
#define SPI_MISO_PIN 15 /* Not Used */
|
|
#define SPI_SCLK_PIN 14
|
|
#define SPI_CS_PIN 13
|
|
|
|
extern void ada2200_start(void);
|
|
extern void ada2200_stop(void);
|
|
extern void ada2200_init(void);
|
|
extern void ada2200_uninit(void);
|
|
|
|
#endif //_ADA2200_SPI_H_
|
|
|