Lora SX1278 with STM32F1C308 is not running (using KeilC u5 and Standard Peripheral Library). I can't write and read command to Lora register. Please someone help me.

Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include "lora.h"
#include "stm32f10x_spi.h" // Keil::Device:StdPeriph Drivers:SPI
#include <string.h>
#include <stdio.h>
#include "delay.h"
#define SPI1_NSS GPIO_Pin_4
#define SPI1_SCK GPIO_Pin_5
#define SPI1_MISO GPIO_Pin_6
#define SPI1_MOSI GPIO_Pin_7
#define SPI1_RESET GPIO_Pin_0
#define RESET_PORT GPIOB
#define SPI1_GPIO GPIOA
void SPI_Config(void){
GPIO_InitTypeDef GPIO_InitStructure;
GPIO_InitStructure.GPIO_Pin =SPI1_SCK| SPI1_MISO| SPI1_MOSI|SPI1_NSS|SPI1_RESET;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_2MHz;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP; //Chan hoat dong trong 1 chuc nang thay the nhu I2C, SPI
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

0