generated from hulk/gd32e23x_template
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			366 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			366 B
		
	
	
	
		
			C
		
	
	
	
	
	
| //
 | |
| // Created by dell on 24-12-20.
 | |
| //
 | |
| 
 | |
| #ifndef TMP112_H
 | |
| #define TMP112_H
 | |
| 
 | |
| #include "gd32e23x_it.h"
 | |
| #include "gd32e23x.h"
 | |
| #include "systick.h"
 | |
| #include <stdbool.h>
 | |
| #include <string.h>
 | |
| #include <stdio.h>
 | |
| #include <stdlib.h>
 | |
| #include <math.h>
 | |
| #include "i2c.h"
 | |
| 
 | |
| #define TMP112A_ADDR         (0x49 << 1)
 | |
| 
 | |
| uint32_t tmp112a_get_raw_channel_result(void);
 | |
| 
 | |
| #endif //TMP112_H
 |