You cannot select more than 25 topics 
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long. 
		
		
			
				This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
			
		
		
		
		
			
	
	
		
			
	
		
			This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
		 
	
		
		
			
				
				
					
						
						
						
							/*
  
						
						
						
							 * globals.h
  
						
						
						
							 *
  
						
						
						
							 *  Created on: 29 нояб. 2018 г   
						
						
						
							 *      Author: maxx
  
						
						
						
							 */ 
 
						
						
						
							
 
						
						
						
							# ifndef GLOBALS_H_ 
  
						
						
						
							# define GLOBALS_H_ 
  
						
						
						
							 
						
						
						
							# include  <avr/io.h> 
  
						
						
						
							# include  <util/delay.h> 
  
						
						
						
							# include  <avr/pgmspace.h> 
  
						
						
						
							# include  "avr/wdt.h" // WatchDog 
  
						
						
						
							 
						
						
						
							//#define HTTPD_MAX_BUF_SIZE	2048 //For Mega1284p(16kb RAM)/Mega2560(8kb RAM)
  
						
						
						
							# define HTTPD_MAX_BUF_SIZE	512  //For Mega644p(4kb RAM)/Mega128(4kb RAM)
  
						
						
						
							 
						
						
						
							# define PRINTF_EN 1 
  
						
						
						
							# if PRINTF_EN 
  
						
						
						
							# define PRINTF(FORMAT,args...) printf_P(PSTR(FORMAT),##args) 
  
						
						
						
							# else 
  
						
						
						
							# define PRINTF(...) 
  
						
						
						
							# endif 
  
						
						
						
							 
						
						
						
							//#define IP_WORK
  
						
						
						
							 
						
						
						
							//SPI CLOCK 4 or 8Mhz
  
						
						
						
							# define SPI_4_MHZ 
  
						
						
						
							//#define SPI_8_MHZ
  
						
						
						
							 
						
						
						
							extern  unsigned  long  millis ( void ) ; 
 
						
						
						
							extern  int  freeRam  ( void ) ; 
 
						
						
						
							
 
						
						
						
							//M644P/M1284p Users LEDS:
  
						
						
						
							//LED1/PORTC.4- m644p/m1284p maxxir
  
						
						
						
							# define led1_conf()      DDRC |= (1<<DDC4) 
  
						
						
						
							# define led1_high()      PORTC |= (1<<PORTC4) 
  
						
						
						
							# define led1_low()       PORTC &= ~(1<<PORTC4) 
  
						
						
						
							# define led1_tgl()     PORTC ^= (1<<PORTC4) 
  
						
						
						
							# define led1_read()     (PORTC & (1<<PORTC4)) 
  
						
						
						
							 
						
						
						
							# define sw1_conf()      {DDRC &= ~(1<<DDC5); PORTC |= (1<<PORTC5);} 
  
						
						
						
							# define sw1_read()     (PINC & (1<<PINC5)) 
  
						
						
						
							 
						
						
						
							extern  const  char  PROGMEM  str_mcu [ ] ; 
 
						
						
						
							extern  const  char  compile_date [ ]  PROGMEM ; 
 
						
						
						
							extern  const  char  compile_time [ ]  PROGMEM ; 
 
						
						
						
							extern  const  char  str_prog_name [ ]  PROGMEM ; 
 
						
						
						
							
 
						
						
						
							# endif  /* GLOBALS_H_ */