You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					14 lines
				
				486 B
			
		
		
			
		
	
	
					14 lines
				
				486 B
			| 
								 
											8 years ago
										 
									 | 
							
								#define PROVISION_CHUNK_LEN 0x20
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								// WiFi SSID     = 0x0  - 0x10
							 | 
						||
| 
								 | 
							
								// WiFi password = 0x10 - 0x1C
							 | 
						||
| 
								 | 
							
								// SHA1 checksum = 0x1C - 0x20
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								void get_provision_chunk(uint8_t *resp) {
							 | 
						||
| 
								 | 
							
								  memcpy(resp, (void *)0x1fff79e0, PROVISION_CHUNK_LEN);
							 | 
						||
| 
								 | 
							
								  if (memcmp(resp, "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff", 0x20) == 0) {
							 | 
						||
| 
								 | 
							
								    memcpy(resp, "unprovisioned\x00\x00\x00testing123\x00\x00\xa3\xa6\x99\xec", 0x20);
							 | 
						||
| 
								 | 
							
								  }
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								
							 |