Question
Is not posible to use: "<",">" in stm32f0, keil v4?
I´m using this:
- void definir_polaridades (void){
- if (contar_valor_1_hsync<contar_valor_2_hsync){//DEFINIR POLARIDAD DE HSYNC
- polaridad_hsync=5;
- } else {polaridad_hsync=10;}
- if (contar_valor_1_vsync<contar_valor_2_vsync){//DEFINIR POLARIDAD DE VSYNC
- polaridad_vsync=5;
- } else {polaridad_vsync=10;}
- }
Keil don´t give any error, and compiles, but, when i check the result, it don´t take the operation.
Will I have to do without the operation?
Thx in advance!!!
