SPI slave integration (experimental)
This commit is contained in:
		
							parent
							
								
									0cc98a2e24
								
							
						
					
					
						commit
						8e3805a63b
					
				| @ -29,6 +29,7 @@ void lora_send(osjob_t *job); | ||||
| void lora_enqueuedata(uint8_t messageType, MessageBuffer_t *message); | ||||
| void lora_queuereset(void); | ||||
| void lora_housekeeping(void); | ||||
| 
 | ||||
| esp_err_t lora_stack_init(); | ||||
| 
 | ||||
| #endif | ||||
| @ -13,5 +13,7 @@ | ||||
| #include "ota.h" | ||||
| #include "irqhandler.h" | ||||
| #include "led.h" | ||||
| #include "spislave.h" | ||||
| #include "lorawan.h" | ||||
| 
 | ||||
| #endif | ||||
| @ -1,6 +1,9 @@ | ||||
| #ifndef _SENDDATA_H | ||||
| #define _SENDDATA_H | ||||
| 
 | ||||
| #include "spislave.h" | ||||
| #include "lorawan.h" | ||||
| 
 | ||||
| void SendData(uint8_t port); | ||||
| void sendPayload(void); | ||||
| void checkSendQueues(void); | ||||
|  | ||||
| @ -25,6 +25,7 @@ licenses. Refer to LICENSE.txt file in repository for more details. | ||||
| #define _SPISLAVE_H | ||||
| 
 | ||||
| #include "globals.h" | ||||
| #include "spislave.h" | ||||
| 
 | ||||
| esp_err_t spi_init(); | ||||
| 
 | ||||
|  | ||||
| @ -29,7 +29,7 @@ description = Paxcounter is a proof-of-concept ESP32 device for metering passeng | ||||
| 
 | ||||
| [common] | ||||
| ; for release_version use max. 10 chars total, use any decimal format like "a.b.c" | ||||
| release_version = 1.6.54 | ||||
| release_version = 1.6.6 | ||||
| ; DEBUG LEVEL: For production run set to 0, otherwise device will leak RAM while running! | ||||
| ; 0=None, 1=Error, 2=Warn, 3=Info, 4=Debug, 5=Verbose | ||||
| debug_level = 0 | ||||
|  | ||||
| @ -6,7 +6,6 @@ | ||||
| // Hardware related definitions for ebox ESP32-bit with external connected RFM95 LoRa
 | ||||
| 
 | ||||
| #define HAS_LORA 1       // comment out if device shall not send data via LoRa
 | ||||
| #define HAS_SPI 1        // comment out if device shall not send data via SPI
 | ||||
| #define CFG_sx1276_radio 1 | ||||
| 
 | ||||
| #define HAS_LED (23) // blue LED on board
 | ||||
|  | ||||
| @ -6,7 +6,6 @@ | ||||
| // Hardware related definitions for ebox ESP32-bit with external connected RFM95 LoRa
 | ||||
| 
 | ||||
| #define HAS_LORA 1       // comment out if device shall not send data via LoRa
 | ||||
| #define HAS_SPI 1        // comment out if device shall not send data via SPI
 | ||||
| #define CFG_sx1276_radio 1 | ||||
| 
 | ||||
| #define HAS_LED (22)     // Green LED on board
 | ||||
|  | ||||
| @ -6,7 +6,6 @@ | ||||
| // Hardware related definitions for Pycom FiPy Board
 | ||||
| 
 | ||||
| #define HAS_LORA 1 // comment out if device shall not send data via LoRa
 | ||||
| #define HAS_SPI 1  // comment out if device shall not send data via SPI
 | ||||
| 
 | ||||
| #define CFG_sx1272_radio 1 | ||||
| #define HAS_LED NOT_A_PIN      // FiPy has no on board LED, so we use RGB LED
 | ||||
|  | ||||
| @ -6,7 +6,6 @@ | ||||
| // Hardware related definitions for Heltec LoRa-32 Board
 | ||||
| 
 | ||||
| #define HAS_LORA 1       // comment out if device shall not send data via LoRa
 | ||||
| #define HAS_SPI 1        // comment out if device shall not send data via SPI
 | ||||
| #define CFG_sx1276_radio 1 | ||||
| 
 | ||||
| #define HAS_DISPLAY U8X8_SSD1306_128X64_NONAME_HW_I2C // OLED-Display on board
 | ||||
|  | ||||
| @ -6,7 +6,6 @@ | ||||
| // Hardware related definitions for Heltec V2 LoRa-32 Board
 | ||||
| 
 | ||||
| #define HAS_LORA 1       // comment out if device shall not send data via LoRa
 | ||||
| #define HAS_SPI 1        // comment out if device shall not send data via SPI
 | ||||
| #define CFG_sx1276_radio 1 | ||||
| 
 | ||||
| #define HAS_DISPLAY U8X8_SSD1306_128X64_NONAME_HW_I2C // OLED-Display on board
 | ||||
|  | ||||
| @ -10,6 +10,4 @@ | ||||
| #define HAS_LED 22        // on board LED on GPIO22
 | ||||
| #define LED_ACTIVE_LOW 1  // Onboard LED is active when pin is LOW
 | ||||
| 
 | ||||
| #define HAS_SPI 1         // comment out if device shall not send data via SPI
 | ||||
| 
 | ||||
| #endif | ||||
| @ -18,7 +18,6 @@ | ||||
| #define BUTTON_PULLUP  1  // Button need pullup instead of default pulldown
 | ||||
| 
 | ||||
| #define HAS_LORA  1       // comment out if device shall not send data via LoRa
 | ||||
| #define HAS_SPI   1       // comment out if device shall not send data via SPI
 | ||||
| #define CFG_sx1276_radio 1 // RFM95 module
 | ||||
| 
 | ||||
| // Pins for LORA chip SPI interface, reset line and interrupt lines
 | ||||
|  | ||||
| @ -19,7 +19,6 @@ | ||||
| #define BUTTON_PULLUP  1  // Button need pullup instead of default pulldown
 | ||||
| 
 | ||||
| #define HAS_LORA  1       // comment out if device shall not send data via LoRa
 | ||||
| #define HAS_SPI   1       // comment out if device shall not send data via SPI
 | ||||
| #define CFG_sx1276_radio 1 // RFM95 module
 | ||||
| 
 | ||||
| // Pins for LORA chip SPI interface, reset line and interrupt lines
 | ||||
|  | ||||
| @ -6,7 +6,6 @@ | ||||
| // Hardware related definitions for Pycom LoPy Board (NOT LoPy4)
 | ||||
| 
 | ||||
| #define HAS_LORA 1       // comment out if device shall not send data via LoRa
 | ||||
| #define HAS_SPI 1        // comment out if device shall not send data via SPI
 | ||||
| #define CFG_sx1272_radio 1 | ||||
| #define HAS_LED NOT_A_PIN // LoPy4 has no on board mono LED, we use on board RGB LED
 | ||||
| #define HAS_RGB_LED (0)  // WS2812B RGB LED on GPIO0
 | ||||
|  | ||||
| @ -17,7 +17,6 @@ | ||||
| //#define BUTTON_PULLUP  1  // Button need pullup instead of default pulldown
 | ||||
| 
 | ||||
| #define HAS_LORA  1       // comment out if device shall not send data via LoRa
 | ||||
| #define HAS_SPI   1       // comment out if device shall not send data via SPI
 | ||||
| #define CFG_sx1276_radio 1 // RFM95 module
 | ||||
| 
 | ||||
| // Pins for LORA chip SPI interface, reset line and interrupt lines
 | ||||
|  | ||||
| @ -6,7 +6,6 @@ | ||||
| // Hardware related definitions for TTGO T-Beam board
 | ||||
| 
 | ||||
| #define HAS_LORA 1       // comment out if device shall not send data via LoRa
 | ||||
| #define HAS_SPI 1        // comment out if device shall not send data via SPI
 | ||||
| #define CFG_sx1276_radio 1 // HPD13A LoRa SoC
 | ||||
| 
 | ||||
| #define BOARD_HAS_PSRAM // use extra 4MB external RAM
 | ||||
|  | ||||
| @ -6,7 +6,6 @@ | ||||
| // Hardware related definitions for TTGOv1 board
 | ||||
| 
 | ||||
| #define HAS_LORA 1       // comment out if device shall not send data via LoRa
 | ||||
| #define HAS_SPI 1        // comment out if device shall not send data via SPI
 | ||||
| #define CFG_sx1276_radio 1 | ||||
| 
 | ||||
| #define HAS_DISPLAY U8X8_SSD1306_128X64_NONAME_HW_I2C // OLED-Display on board
 | ||||
|  | ||||
| @ -6,7 +6,6 @@ | ||||
| // Hardware related definitions for TTGO V2 Board
 | ||||
| 
 | ||||
| #define HAS_LORA 1       // comment out if device shall not send data via LoRa
 | ||||
| #define HAS_SPI 1        // comment out if device shall not send data via SPI
 | ||||
| #define CFG_sx1276_radio 1 // HPD13A LoRa SoC
 | ||||
| 
 | ||||
| #define HAS_DISPLAY U8X8_SSD1306_128X64_NONAME_HW_I2C | ||||
|  | ||||
| @ -9,7 +9,6 @@ | ||||
| */ | ||||
| 
 | ||||
| #define HAS_LORA 1       // comment out if device shall not send data via LoRa
 | ||||
| #define HAS_SPI 1        // comment out if device shall not send data via SPI
 | ||||
| #define CFG_sx1276_radio 1 // HPD13A LoRa SoC
 | ||||
| 
 | ||||
| #define HAS_DISPLAY U8X8_SSD1306_128X64_NONAME_HW_I2C | ||||
|  | ||||
| @ -10,7 +10,6 @@ | ||||
| */ | ||||
| 
 | ||||
| #define HAS_LORA 1       // comment out if device shall not send data via LoRa
 | ||||
| #define HAS_SPI 1        // comment out if device shall not send data via SPI
 | ||||
| #define CFG_sx1276_radio 1 // HPD13A LoRa SoC
 | ||||
| #define HAS_LED NOT_A_PIN // no usable LED on board
 | ||||
| #define DISABLE_BROWNOUT 1 // comment out if you want to keep brownout feature
 | ||||
|  | ||||
| @ -1,11 +1,11 @@ | ||||
| #ifdef HAS_LORA | ||||
| 
 | ||||
| // Basic Config
 | ||||
| #include "lorawan.h" | ||||
| 
 | ||||
| // Local logging Tag
 | ||||
| static const char TAG[] = "lora"; | ||||
| 
 | ||||
| #ifdef HAS_LORA | ||||
| 
 | ||||
| osjob_t sendjob; | ||||
| QueueHandle_t LoraSendQueue; | ||||
| 
 | ||||
|  | ||||
| @ -48,7 +48,6 @@ ESP32 hardware timers | ||||
| 
 | ||||
| // Basic Config
 | ||||
| #include "main.h" | ||||
| #include "spislave.h" | ||||
| 
 | ||||
| configData_t cfg; // struct holds current device configuration
 | ||||
| char display_line6[16], display_line7[16]; // display buffers
 | ||||
|  | ||||
| @ -1,6 +1,5 @@ | ||||
| // Basic Config
 | ||||
| #include "globals.h" | ||||
| #include "spislave.h" | ||||
| #include "senddata.h" | ||||
| 
 | ||||
| // put data to send in RTos Queues used for transmit over channels Lora and SPI
 | ||||
| void SendData(uint8_t port) { | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user