Merge pull request #56 from jacobeva/master
Fix nRF52 compilation error
This commit is contained in:
		
						commit
						5bdbfd09cd
					
				
							
								
								
									
										1
									
								
								Config.h
									
									
									
									
									
								
							
							
						
						
									
										1
									
								
								Config.h
									
									
									
									
									
								
							@ -330,6 +330,7 @@
 | 
				
			|||||||
            const int pin_dio = 47;
 | 
					            const int pin_dio = 47;
 | 
				
			||||||
            const int pin_led_rx = LED_BLUE;
 | 
					            const int pin_led_rx = LED_BLUE;
 | 
				
			||||||
            const int pin_led_tx = LED_GREEN;
 | 
					            const int pin_led_tx = LED_GREEN;
 | 
				
			||||||
 | 
					            const int pin_tcxo_enable = -1;
 | 
				
			||||||
        #endif
 | 
					        #endif
 | 
				
			||||||
	#else
 | 
						#else
 | 
				
			||||||
		#error An unsupported board was selected. Cannot compile RNode firmware.
 | 
							#error An unsupported board was selected. Cannot compile RNode firmware.
 | 
				
			||||||
 | 
				
			|||||||
@ -73,8 +73,10 @@ void setup() {
 | 
				
			|||||||
  #endif
 | 
					  #endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  #if HAS_TCXO == true
 | 
					  #if HAS_TCXO == true
 | 
				
			||||||
    pinMode(pin_tcxo_enable, OUTPUT);
 | 
					    if (pin_tcxo_enable != -1) {
 | 
				
			||||||
    digitalWrite(pin_tcxo_enable, HIGH);
 | 
					        pinMode(pin_tcxo_enable, OUTPUT);
 | 
				
			||||||
 | 
					        digitalWrite(pin_tcxo_enable, HIGH);
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
  #endif
 | 
					  #endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // Initialise buffers
 | 
					  // Initialise buffers
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user