Commit ef1e877acd33cc2c1c6a64a37087497eca87f156

Authored by Geoffrey PREUD'HOMME
1 parent 59a7fe2e

Les boutons fonctionnent correctement

Notamment grâce à des capacités rajoutées
Showing 1 changed file with 4 additions and 4 deletions   Show diff stats
principal.txt
... ... @@ -52,10 +52,10 @@
52 52 jmp retour
53 53  
54 54 .org 0x0006 ; INT2
55   - jmp incrementer
  55 + jmp decrementer
56 56  
57 57 .org 0x0008 ; INT3
58   - jmp decrementer
  58 + jmp incrementer
59 59  
60 60 .org 0x0018 ; Watchdog
61 61 jmp watchdog
... ... @@ -94,7 +94,7 @@ debut:
94 94  
95 95 ; Interruptions externes
96 96 EIMSK <- 0b00001111
97   - EICRA <- 0b11111111 ; TODO Oscillations annulables ?
  97 + EICRA <- 0b10101010
98 98 EICRB <- 0b00000000
99 99  
100 100 ; ADC
... ... @@ -253,7 +253,7 @@ etatVeilleHeur:
253 253 reti
254 254  
255 255 etatVeilleTemp:
256   - etat <- 0
  256 + etat <- 1
257 257 compteur <- ADCH
258 258 call afficherTemperature
259 259 reti
... ...