19 lines
361 B
C
19 lines
361 B
C
/*
|
|
* lcd_16x2_config.h
|
|
*
|
|
* Created on: Jul 29, 2023
|
|
* Author: Carst
|
|
*/
|
|
|
|
#ifndef LCD_16X2_CONFIG_H_
|
|
#define LCD_16X2_CONFIG_H_
|
|
|
|
#include <stm32g071xx.h>
|
|
#include "Display.hpp"
|
|
|
|
#define NOP __NOP
|
|
#define __delay_ms(x) { for(int i=0;i<x*64000;i++); }
|
|
#define __delay_us(x) { for(int i=0;i<x*64;i++); }
|
|
|
|
#endif /* LCD_16X2_CONFIG_H_ */
|