Mercurial > public > hwos_code
comparison src/logbook.asm @ 435:0590b8fafc8d
Logbook marker temporally disabled in internal logbook
author | heinrichsweikamp |
---|---|
date | Thu, 23 Jun 2016 10:59:42 +0200 |
parents | a001f170a1f7 |
children | 95ee78f4a974 |
comparison
equal
deleted
inserted
replaced
434:a001f170a1f7 | 435:0590b8fafc8d |
---|---|
909 | 909 |
910 PIXEL_WRITE logbook_pixel_x_pos,xC+0 ; Set col(0..159) x row (0..239), put a std color pixel. | 910 PIXEL_WRITE logbook_pixel_x_pos,xC+0 ; Set col(0..159) x row (0..239), put a std color pixel. |
911 incf logbook_pixel_x_pos,F ; Next column | 911 incf logbook_pixel_x_pos,F ; Next column |
912 | 912 |
913 ;---- Draw Marker square , if any ---------------------------------------- | 913 ;---- Draw Marker square , if any ---------------------------------------- |
914 btfss log_marker_found ; Any marker to draw? | 914 ; btfss log_marker_found ; Any marker to draw? ; mH |
915 bra profile_display_skip_marker ; No | 915 bra profile_display_skip_marker ; No |
916 | 916 |
917 ; 2x2 square | 917 ; 2x2 square |
918 incf apnoe_mins,W ; increase row (Y) | 918 incf apnoe_mins,W ; increase row (Y) |
919 movwf win_top | 919 movwf win_top |
929 call TFT_set_color | 929 call TFT_set_color |
930 call TFT_box ; Draw 2x2 Box | 930 call TFT_box ; Draw 2x2 Box |
931 bcf log_marker_found ; Clear flag | 931 bcf log_marker_found ; Clear flag |
932 | 932 |
933 profile_display_skip_marker: | 933 profile_display_skip_marker: |
934 bcf log_marker_found ; Clear flag ; mH | |
934 ;---- Draw CNS curve, if any --------------------------------------------- | 935 ;---- Draw CNS curve, if any --------------------------------------------- |
935 movf divisor_cns,W | 936 movf divisor_cns,W |
936 bz profile_display_skip_cns | 937 bz profile_display_skip_cns |
937 ; | 938 ; |
938 ; TODO HERE | 939 ; TODO HERE |