This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

LAUNCHXL-CC1350: Sub-1 GHz forum

Expert 1600 points
Part Number: LAUNCHXL-CC1350
Other Parts Discussed in Thread: CC1350

Hi I've created 2 functions to load and store a single byte from the external flash using the driver in contiki-ng.

I noticed there are lots of errors in the read value, and they depend on the CONFIG_FLASH_OFFSET (Where do I start writing into the flash) Is there a reason for that?

Functions:

#include "contiki.h"
#include <stdio.h>
#include <stdlib.h>

#include "clock.h"

#include "ext_flash_array.h"
#include "ext-flash.h"

bool save_byte(UBYTE byte, UWORD addr)
{
    /* Save byte to flash */
    if(!ext_flash_open(NULL)) {
        clock_delay_usec(1000);
        if(!ext_flash_open(NULL)) {
            printf("Could not open flash to read byte addr %d\n", addr);
            ext_flash_close(NULL);
            return false;
        }
    }

    if (0) {
//    if (!ext_flash_erase(NULL, addr*4, sizeof(UBYTE))) {
        printf("Error erasing byte\n");
    } else {
        if(!ext_flash_write(NULL, addr*8, sizeof(UBYTE), (uint8_t *)&byte)) {
            clock_delay_usec(1000);
            if(!ext_flash_write(NULL, addr*8, sizeof(UBYTE), (uint8_t *)&byte)) {
                printf("Error writing byte\n");
            }
        }
    }
    ext_flash_close(NULL);

    Debug("save_byte(%d, %d) saved the value %d to %d in ext_flash\n", byte, addr, byte, addr);
    clock_delay_usec(1000);

    return true;
}

bool load_byte(UBYTE *rv, UWORD addr)
{
    UBYTE buf;
    /* Read from flash into a buffer */
    if(!ext_flash_open(NULL)) {
        if(!ext_flash_open(NULL)) {
            clock_delay_usec(1000);
            printf("Could not open flash to read byte addr %d\n", addr);
            ext_flash_close(NULL);
            return false;
        }
    }

    if(!ext_flash_read(NULL, addr*8, sizeof(buf), (uint8_t *)&buf)) {
        if(!ext_flash_read(NULL, addr*8, sizeof(buf), (uint8_t *)&buf)) {
            clock_delay_usec(1000);
            printf("Error reading from flash\n");
            ext_flash_close(NULL);
            return false;
        }
    }
    ext_flash_close(NULL);
    *rv = buf;

    Debug("load_byte(*rv, %d) loaded the value %d from %d in ext_flash\n", addr, buf, addr);

    return true;
}

main:

/*-----------------------------------------------------------*/
PROCESS(epd_process, "Epd process");
AUTOSTART_PROCESSES(&epd_process);
/*-----------------------------------------------------------*/
PROCESS_THREAD(epd_process, ev, data)
{
    PROCESS_BEGIN();

    UBYTE tmp;

    for(UWORD cnt=0; cnt<IMAGESIZE; cnt++) {
        save_byte(0xCC, cnt+CONFIG_FLASH_OFFSET);
        watchdog_periodic();
    }
    for(UWORD cnt=0; cnt<IMAGESIZE; cnt++) {
        load_byte(&tmp, cnt+CONFIG_FLASH_OFFSET);
        watchdog_periodic();
    }
    for(UWORD cnt=0; cnt<IMAGESIZE; cnt++) {
        save_byte(0xCC, cnt+CONFIG_FLASH_OFFSET);
        load_byte(&tmp, cnt+CONFIG_FLASH_OFFSET);
        watchdog_periodic();
    }

    PROCESS_END();
}

Result:

Debug: save_byte(204, 1000) saved the value 204 to 1000 in ext_flash
Debug: save_byte(204, 1001) saved the value 204 to 1001 in ext_flash
Debug: save_byte(204, 1002) saved the value 204 to 1002 in ext_flash
Debug: save_byte(204, 1003) saved the value 204 to 1003 in ext_flash
Debug: save_byte(204, 1004) saved the value 204 to 1004 in ext_flash
Debug: save_byte(204, 1005) saved the value 204 to 1005 in ext_flash
Debug: save_byte(204, 1006) saved the value 204 to 1006 in ext_flash
Debug: save_byte(204, 1007) saved the value 204 to 1007 in ext_flash
Debug: save_byte(204, 1008) saved the value 204 to 1008 in ext_flash
Debug: save_byte(204, 1009) saved the value 204 to 1009 in ext_flash
Debug: save_byte(204, 1010) saved the value 204 to 1010 in ext_flash
Debug: save_byte(204, 1011) saved the value 204 to 1011 in ext_flash
Debug: save_byte(204, 1012) saved the value 204 to 1012 in ext_flash
Debug: save_byte(204, 1013) saved the value 204 to 1013 in ext_flash
Debug: save_byte(204, 1014) saved the value 204 to 1014 in ext_flash
Debug: save_byte(204, 1015) saved the value 204 to 1015 in ext_flash
Debug: save_byte(204, 1016) saved the value 204 to 1016 in ext_flash
Debug: save_byte(204, 1017) saved the value 204 to 1017 in ext_flash
Debug: save_byte(204, 1018) saved the value 204 to 1018 in ext_flash
Debug: save_byte(204, 1019) saved the value 204 to 1019 in ext_flash
Debug: save_byte(204, 1020) saved the value 204 to 1020 in ext_flash
Debug: save_byte(204, 1021) saved the value 204 to 1021 in ext_flash
Debug: save_byte(204, 1022) saved the value 204 to 1022 in ext_flash
Debug: save_byte(204, 1023) saved the value 204 to 1023 in ext_flash
Debug: save_byte(204, 1024) saved the value 204 to 1024 in ext_flash
Debug: save_byte(204, 1025) saved the value 204 to 1025 in ext_flash
Debug: save_byte(204, 1026) saved the value 204 to 1026 in ext_flash
Debug: save_byte(204, 1027) saved the value 204 to 1027 in ext_flash
Debug: save_byte(204, 1028) saved the value 204 to 1028 in ext_flash
Debug: save_byte(204, 1029) saved the value 204 to 1029 in ext_flash
Debug: save_byte(204, 1030) saved the value 204 to 1030 in ext_flash
Debug: save_byte(204, 1031) saved the value 204 to 1031 in ext_flash
Debug: save_byte(204, 1032) saved the value 204 to 1032 in ext_flash
Debug: save_byte(204, 1033) saved the value 204 to 1033 in ext_flash
Debug: save_byte(204, 1034) saved the value 204 to 1034 in ext_flash
Debug: save_byte(204, 1035) saved the value 204 to 1035 in ext_flash
Debug: save_byte(204, 1036) saved the value 204 to 1036 in ext_flash
Debug: save_byte(204, 1037) saved the value 204 to 1037 in ext_flash
Debug: save_byte(204, 1038) saved the value 204 to 1038 in ext_flash
Debug: save_byte(204, 1039) saved the value 204 to 1039 in ext_flash
Debug: save_byte(204, 1040) saved the value 204 to 1040 in ext_flash
Debug: save_byte(204, 1041) saved the value 204 to 1041 in ext_flash
Debug: save_byte(204, 1042) saved the value 204 to 1042 in ext_flash
Debug: save_byte(204, 1043) saved the value 204 to 1043 in ext_flash
Debug: save_byte(204, 1044) saved the value 204 to 1044 in ext_flash
Debug: save_byte(204, 1045) saved the value 204 to 1045 in ext_flash
Debug: save_byte(204, 1046) saved the value 204 to 1046 in ext_flash
Debug: save_byte(204, 1047) saved the value 204 to 1047 in ext_flash
Debug: save_byte(204, 1048) saved the value 204 to 1048 in ext_flash
Debug: save_byte(204, 1049) saved the value 204 to 1049 in ext_flash
Debug: save_byte(204, 1050) saved the value 204 to 1050 in ext_flash
Debug: save_byte(204, 1051) saved the value 204 to 1051 in ext_flash
Debug: save_byte(204, 1052) saved the value 204 to 1052 in ext_flash
Debug: save_byte(204, 1053) saved the value 204 to 1053 in ext_flash
Debug: save_byte(204, 1054) saved the value 204 to 1054 in ext_flash
Debug: save_byte(204, 1055) saved the value 204 to 1055 in ext_flash
Debug: save_byte(204, 1056) saved the value 204 to 1056 in ext_flash
Debug: save_byte(204, 1057) saved the value 204 to 1057 in ext_flash
Debug: save_byte(204, 1058) saved the value 204 to 1058 in ext_flash
Debug: save_byte(204, 1059) saved the value 204 to 1059 in ext_flash
Debug: load_byte(*rv, 1000) loaded the value 0 from 1000 in ext_flash      //Wrong Val
Debug: load_byte(*rv, 1001) loaded the value 64 from 1001 in ext_flash     //Wrong Val
Debug: load_byte(*rv, 1002) loaded the value 64 from 1002 in ext_flash     //Wrong Val
Debug: load_byte(*rv, 1003) loaded the value 64 from 1003 in ext_flash     //Wrong Val
Debug: load_byte(*rv, 1004) loaded the value 64 from 1004 in ext_flash     //Wrong Val
Debug: load_byte(*rv, 1005) loaded the value 64 from 1005 in ext_flash     //Wrong Val
Debug: load_byte(*rv, 1006) loaded the value 64 from 1006 in ext_flash     //Wrong Val
Debug: load_byte(*rv, 1007) loaded the value 64 from 1007 in ext_flash     //Wrong Val
Debug: load_byte(*rv, 1008) loaded the value 64 from 1008 in ext_flash     //Wrong Val
Debug: load_byte(*rv, 1009) loaded the value 64 from 1009 in ext_flash     //Wrong Val
Debug: load_byte(*rv, 1010) loaded the value 64 from 1010 in ext_flash     //Wrong Val
Debug: load_byte(*rv, 1011) loaded the value 64 from 1011 in ext_flash     //Wrong Val
Debug: load_byte(*rv, 1012) loaded the value 64 from 1012 in ext_flash     //Wrong Val
Debug: load_byte(*rv, 1013) loaded the value 64 from 1013 in ext_flash     //Wrong Val
Debug: load_byte(*rv, 1014) loaded the value 64 from 1014 in ext_flash     //Wrong Val
Debug: load_byte(*rv, 1015) loaded the value 64 from 1015 in ext_flash     //Wrong Val
Debug: load_byte(*rv, 1016) loaded the value 64 from 1016 in ext_flash     //Wrong Val
Debug: load_byte(*rv, 1017) loaded the value 64 from 1017 in ext_flash     //Wrong Val
Debug: load_byte(*rv, 1018) loaded the value 64 from 1018 in ext_flash     //Wrong Val
Debug: load_byte(*rv, 1019) loaded the value 64 from 1019 in ext_flash     //Wrong Val
Debug: load_byte(*rv, 1020) loaded the value 64 from 1020 in ext_flash     //Wrong Val
Debug: load_byte(*rv, 1021) loaded the value 64 from 1021 in ext_flash     //Wrong Val
Debug: load_byte(*rv, 1022) loaded the value 64 from 1022 in ext_flash     //Wrong Val
Debug: load_byte(*rv, 1023) loaded the value 64 from 1023 in ext_flash     //Wrong Val
Debug: load_byte(*rv, 1024) loaded the value 204 from 1024 in ext_flash
Debug: load_byte(*rv, 1025) loaded the value 204 from 1025 in ext_flash
Debug: load_byte(*rv, 1026) loaded the value 204 from 1026 in ext_flash
Debug: load_byte(*rv, 1027) loaded the value 204 from 1027 in ext_flash
Debug: load_byte(*rv, 1028) loaded the value 204 from 1028 in ext_flash
Debug: load_byte(*rv, 1029) loaded the value 204 from 1029 in ext_flash
Debug: load_byte(*rv, 1030) loaded the value 204 from 1030 in ext_flash
Debug: load_byte(*rv, 1031) loaded the value 204 from 1031 in ext_flash
Debug: load_byte(*rv, 1032) loaded the value 204 from 1032 in ext_flash
Debug: load_byte(*rv, 1033) loaded the value 204 from 1033 in ext_flash
Debug: load_byte(*rv, 1034) loaded the value 204 from 1034 in ext_flash
Debug: load_byte(*rv, 1035) loaded the value 204 from 1035 in ext_flash
Debug: load_byte(*rv, 1036) loaded the value 204 from 1036 in ext_flash
Debug: load_byte(*rv, 1037) loaded the value 204 from 1037 in ext_flash
Debug: load_byte(*rv, 1038) loaded the value 204 from 1038 in ext_flash
Debug: load_byte(*rv, 1039) loaded the value 204 from 1039 in ext_flash
Debug: load_byte(*rv, 1040) loaded the value 204 from 1040 in ext_flash
Debug: load_byte(*rv, 1041) loaded the value 204 from 1041 in ext_flash
Debug: load_byte(*rv, 1042) loaded the value 204 from 1042 in ext_flash
Debug: load_byte(*rv, 1043) loaded the value 204 from 1043 in ext_flash
Debug: load_byte(*rv, 1044) loaded the value 204 from 1044 in ext_flash
Debug: load_byte(*rv, 1045) loaded the value 204 from 1045 in ext_flash
Debug: load_byte(*rv, 1046) loaded the value 204 from 1046 in ext_flash
Debug: load_byte(*rv, 1047) loaded the value 204 from 1047 in ext_flash
Debug: load_byte(*rv, 1048) loaded the value 204 from 1048 in ext_flash
Debug: load_byte(*rv, 1049) loaded the value 204 from 1049 in ext_flash
Debug: load_byte(*rv, 1050) loaded the value 204 from 1050 in ext_flash
Debug: load_byte(*rv, 1051) loaded the value 204 from 1051 in ext_flash
Debug: load_byte(*rv, 1052) loaded the value 204 from 1052 in ext_flash
Debug: load_byte(*rv, 1053) loaded the value 204 from 1053 in ext_flash
Debug: load_byte(*rv, 1054) loaded the value 204 from 1054 in ext_flash
Debug: load_byte(*rv, 1055) loaded the value 204 from 1055 in ext_flash
Debug: load_byte(*rv, 1056) loaded the value 204 from 1056 in ext_flash
Debug: load_byte(*rv, 1057) loaded the value 204 from 1057 in ext_flash
Debug: load_byte(*rv, 1058) loaded the value 204 from 1058 in ext_flash
Debug: load_byte(*rv, 1059) loaded the value 204 from 1059 in ext_flash

  • Try to set CONFIG_FLASH_OFFSET as 0 to see if it works.

  • I ran it from 0 and scanned through 1300 entry, 0 to 36 were corrupt...

    Debug: save_byte(204, 0) saved the value 204 to 0 in ext_flash
    Debug: save_byte(204, 1) saved the value 204 to 1 in ext_flash
    Debug: save_byte(204, 2) saved the value 204 to 2 in ext_flash
    Debug: save_byte(204, 3) saved the value 204 to 3 in ext_flash
    Debug: save_byte(204, 4) saved the value 204 to 4 in ext_flash
    Debug: save_byte(204, 5) saved the value 204 to 5 in ext_flash
    Debug: save_byte(204, 6) saved the value 204 to 6 in ext_flash
    Debug: save_byte(204, 7) saved the value 204 to 7 in ext_flash
    Debug: save_byte(204, 8) saved the value 204 to 8 in ext_flash
    Debug: save_byte(204, 9) saved the value 204 to 9 in ext_flash
    Debug: save_byte(204, 10) saved the value 204 to 10 in ext_flash
    Debug: save_byte(204, 11) saved the value 204 to 11 in ext_flash
    Debug: save_byte(204, 12) saved the value 204 to 12 in ext_flash
    Debug: save_byte(204, 13) saved the value 204 to 13 in ext_flash
    Debug: save_byte(204, 14) saved the value 204 to 14 in ext_flash
    Debug: save_byte(204, 15) saved the value 204 to 15 in ext_flash
    Debug: save_byte(204, 16) saved the value 204 to 16 in ext_flash
    Debug: save_byte(204, 17) saved the value 204 to 17 in ext_flash
    Debug: save_byte(204, 18) saved the value 204 to 18 in ext_flash
    Debug: save_byte(204, 19) saved the value 204 to 19 in ext_flash
    Debug: save_byte(204, 20) saved the value 204 to 20 in ext_flash
    Debug: save_byte(204, 21) saved the value 204 to 21 in ext_flash
    Debug: save_byte(204, 22) saved the value 204 to 22 in ext_flash
    Debug: save_byte(204, 23) saved the value 204 to 23 in ext_flash
    Debug: save_byte(204, 24) saved the value 204 to 24 in ext_flash
    Debug: save_byte(204, 25) saved the value 204 to 25 in ext_flash
    Debug: save_byte(204, 26) saved the value 204 to 26 in ext_flash
    Debug: save_byte(204, 27) saved the value 204 to 27 in ext_flash
    Debug: save_byte(204, 28) saved the value 204 to 28 in ext_flash
    Debug: save_byte(204, 29) saved the value 204 to 29 in ext_flash
    Debug: save_byte(204, 30) saved the value 204 to 30 in ext_flash
    Debug: save_byte(204, 31) saved the value 204 to 31 in ext_flash
    Debug: save_byte(204, 32) saved the value 204 to 32 in ext_flash
    Debug: save_byte(204, 33) saved the value 204 to 33 in ext_flash
    Debug: save_byte(204, 34) saved the value 204 to 34 in ext_flash
    Debug: save_byte(204, 35) saved the value 204 to 35 in ext_flash
    Debug: save_byte(204, 36) saved the value 204 to 36 in ext_flash
    Debug: save_byte(204, 37) saved the value 204 to 37 in ext_flash
    Debug: save_byte(204, 38) saved the value 204 to 38 in ext_flash
    Debug: save_byte(204, 39) saved the value 204 to 39 in ext_flash
    Debug: save_byte(204, 40) saved the value 204 to 40 in ext_flash
    Debug: save_byte(204, 41) saved the value 204 to 41 in ext_flash
    Debug: save_byte(204, 42) saved the value 204 to 42 in ext_flash
    Debug: save_byte(204, 43) saved the value 204 to 43 in ext_flash
    Debug: save_byte(204, 44) saved the value 204 to 44 in ext_flash
    Debug: save_byte(204, 45) saved the value 204 to 45 in ext_flash
    Debug: save_byte(204, 46) saved the value 204 to 46 in ext_flash
    Debug: save_byte(204, 47) saved the value 204 to 47 in ext_flash
    Debug: save_byte(204, 48) saved the value 204 to 48 in ext_flash
    Debug: save_byte(204, 49) saved the value 204 to 49 in ext_flash
    Debug: save_byte(204, 50) saved the value 204 to 50 in ext_flash
    Debug: save_byte(204, 51) saved the value 204 to 51 in ext_flash
    Debug: save_byte(204, 52) saved the value 204 to 52 in ext_flash
    Debug: save_byte(204, 53) saved the value 204 to 53 in ext_flash
    Debug: save_byte(204, 54) saved the value 204 to 54 in ext_flash
    Debug: save_byte(204, 55) saved the value 204 to 55 in ext_flash
    Debug: save_byte(204, 56) saved the value 204 to 56 in ext_flash
    Debug: save_byte(204, 57) saved the value 204 to 57 in ext_flash
    Debug: save_byte(204, 58) saved the value 204 to 58 in ext_flash
    Debug: save_byte(204, 59) saved the value 204 to 59 in ext_flash
    Debug: save_byte(204, 60) saved the value 204 to 60 in ext_flash
    Debug: save_byte(204, 61) saved the value 204 to 61 in ext_flash
    Debug: save_byte(204, 62) saved the value 204 to 62 in ext_flash
    Debug: save_byte(204, 63) saved the value 204 to 63 in ext_flash
    Debug: save_byte(204, 64) saved the value 204 to 64 in ext_flash
    Debug: save_byte(204, 65) saved the value 204 to 65 in ext_flash
    Debug: save_byte(204, 66) saved the value 204 to 66 in ext_flash
    Debug: save_byte(204, 67) saved the value 204 to 67 in ext_flash
    Debug: save_byte(204, 68) saved the value 204 to 68 in ext_flash
    Debug: save_byte(204, 69) saved the value 204 to 69 in ext_flash
    Debug: save_byte(204, 70) saved the value 204 to 70 in ext_flash
    Debug: save_byte(204, 71) saved the value 204 to 71 in ext_flash
    Debug: save_byte(204, 72) saved the value 204 to 72 in ext_flash
    Debug: save_byte(204, 73) saved the value 204 to 73 in ext_flash
    Debug: save_byte(204, 74) saved the value 204 to 74 in ext_flash
    Debug: save_byte(204, 75) saved the value 204 to 75 in ext_flash
    Debug: save_byte(204, 76) saved the value 204 to 76 in ext_flash
    Debug: save_byte(204, 77) saved the value 204 to 77 in ext_flash
    Debug: save_byte(204, 78) saved the value 204 to 78 in ext_flash
    Debug: save_byte(204, 79) saved the value 204 to 79 in ext_flash
    Debug: save_byte(204, 80) saved the value 204 to 80 in ext_flash
    Debug: save_byte(204, 81) saved the value 204 to 81 in ext_flash
    Debug: save_byte(204, 82) saved the value 204 to 82 in ext_flash
    Debug: save_byte(204, 83) saved the value 204 to 83 in ext_flash
    Debug: save_byte(204, 84) saved the value 204 to 84 in ext_flash
    Debug: save_byte(204, 85) saved the value 204 to 85 in ext_flash
    Debug: save_byte(204, 86) saved the value 204 to 86 in ext_flash
    Debug: save_byte(204, 87) saved the value 204 to 87 in ext_flash
    Debug: save_byte(204, 88) saved the value 204 to 88 in ext_flash
    Debug: save_byte(204, 89) saved the value 204 to 89 in ext_flash
    Debug: save_byte(204, 90) saved the value 204 to 90 in ext_flash
    Debug: save_byte(204, 91) saved the value 204 to 91 in ext_flash
    Debug: save_byte(204, 92) saved the value 204 to 92 in ext_flash
    Debug: save_byte(204, 93) saved the value 204 to 93 in ext_flash
    Debug: save_byte(204, 94) saved the value 204 to 94 in ext_flash
    Debug: save_byte(204, 95) saved the value 204 to 95 in ext_flash
    Debug: save_byte(204, 96) saved the value 204 to 96 in ext_flash
    Debug: save_byte(204, 97) saved the value 204 to 97 in ext_flash
    Debug: save_byte(204, 98) saved the value 204 to 98 in ext_flash
    Debug: save_byte(204, 99) saved the value 204 to 99 in ext_flash
    Debug: save_byte(204, 100) saved the value 204 to 100 in ext_flash
    Debug: save_byte(204, 101) saved the value 204 to 101 in ext_flash
    Debug: save_byte(204, 102) saved the value 204 to 102 in ext_flash
    Debug: save_byte(204, 103) saved the value 204 to 103 in ext_flash
    Debug: save_byte(204, 104) saved the value 204 to 104 in ext_flash
    Debug: save_byte(204, 105) saved the value 204 to 105 in ext_flash
    Debug: save_byte(204, 106) saved the value 204 to 106 in ext_flash
    Debug: save_byte(204, 107) saved the value 204 to 107 in ext_flash
    Debug: save_byte(204, 108) saved the value 204 to 108 in ext_flash
    Debug: save_byte(204, 109) saved the value 204 to 109 in ext_flash
    Debug: save_byte(204, 110) saved the value 204 to 110 in ext_flash
    Debug: save_byte(204, 111) saved the value 204 to 111 in ext_flash
    Debug: save_byte(204, 112) saved the value 204 to 112 in ext_flash
    Debug: save_byte(204, 113) saved the value 204 to 113 in ext_flash
    Debug: save_byte(204, 114) saved the value 204 to 114 in ext_flash
    Debug: save_byte(204, 115) saved the value 204 to 115 in ext_flash
    Debug: save_byte(204, 116) saved the value 204 to 116 in ext_flash
    Debug: save_byte(204, 117) saved the value 204 to 117 in ext_flash
    Debug: save_byte(204, 118) saved the value 204 to 118 in ext_flash
    Debug: save_byte(204, 119) saved the value 204 to 119 in ext_flash
    Debug: save_byte(204, 120) saved the value 204 to 120 in ext_flash
    Debug: save_byte(204, 121) saved the value 204 to 121 in ext_flash
    Debug: save_byte(204, 122) saved the value 204 to 122 in ext_flash
    Debug: save_byte(204, 123) saved the value 204 to 123 in ext_flash
    Debug: save_byte(204, 124) saved the value 204 to 124 in ext_flash
    Debug: save_byte(204, 125) saved the value 204 to 125 in ext_flash
    Debug: save_byte(204, 126) saved the value 204 to 126 in ext_flash
    Debug: save_byte(204, 127) saved the value 204 to 127 in ext_flash
    Debug: save_byte(204, 128) saved the value 204 to 128 in ext_flash
    Debug: save_byte(204, 129) saved the value 204 to 129 in ext_flash
    Debug: save_byte(204, 130) saved the value 204 to 130 in ext_flash
    Debug: save_byte(204, 131) saved the value 204 to 131 in ext_flash
    Debug: save_byte(204, 132) saved the value 204 to 132 in ext_flash
    Debug: save_byte(204, 133) saved the value 204 to 133 in ext_flash
    Debug: save_byte(204, 134) saved the value 204 to 134 in ext_flash
    Debug: save_byte(204, 135) saved the value 204 to 135 in ext_flash
    Debug: save_byte(204, 136) saved the value 204 to 136 in ext_flash
    Debug: save_byte(204, 137) saved the value 204 to 137 in ext_flash
    Debug: save_byte(204, 138) saved the value 204 to 138 in ext_flash
    Debug: save_byte(204, 139) saved the value 204 to 139 in ext_flash
    Debug: save_byte(204, 140) saved the value 204 to 140 in ext_flash
    Debug: save_byte(204, 141) saved the value 204 to 141 in ext_flash
    Debug: save_byte(204, 142) saved the value 204 to 142 in ext_flash
    Debug: save_byte(204, 143) saved the value 204 to 143 in ext_flash
    Debug: save_byte(204, 144) saved the value 204 to 144 in ext_flash
    Debug: save_byte(204, 145) saved the value 204 to 145 in ext_flash
    Debug: save_byte(204, 146) saved the value 204 to 146 in ext_flash
    Debug: save_byte(204, 147) saved the value 204 to 147 in ext_flash
    Debug: save_byte(204, 148) saved the value 204 to 148 in ext_flash
    Debug: save_byte(204, 149) saved the value 204 to 149 in ext_flash
    Debug: save_byte(204, 150) saved the value 204 to 150 in ext_flash
    Debug: save_byte(204, 151) saved the value 204 to 151 in ext_flash
    Debug: save_byte(204, 152) saved the value 204 to 152 in ext_flash
    Debug: save_byte(204, 153) saved the value 204 to 153 in ext_flash
    Debug: save_byte(204, 154) saved the value 204 to 154 in ext_flash
    Debug: save_byte(204, 155) saved the value 204 to 155 in ext_flash
    Debug: save_byte(204, 156) saved the value 204 to 156 in ext_flash
    Debug: save_byte(204, 157) saved the value 204 to 157 in ext_flash
    Debug: save_byte(204, 158) saved the value 204 to 158 in ext_flash
    Debug: save_byte(204, 159) saved the value 204 to 159 in ext_flash
    Debug: save_byte(204, 160) saved the value 204 to 160 in ext_flash
    Debug: save_byte(204, 161) saved the value 204 to 161 in ext_flash
    Debug: save_byte(204, 162) saved the value 204 to 162 in ext_flash
    Debug: save_byte(204, 163) saved the value 204 to 163 in ext_flash
    Debug: save_byte(204, 164) saved the value 204 to 164 in ext_flash
    Debug: save_byte(204, 165) saved the value 204 to 165 in ext_flash
    Debug: save_byte(204, 166) saved the value 204 to 166 in ext_flash
    Debug: save_byte(204, 167) saved the value 204 to 167 in ext_flash
    Debug: save_byte(204, 168) saved the value 204 to 168 in ext_flash
    Debug: save_byte(204, 169) saved the value 204 to 169 in ext_flash
    Debug: save_byte(204, 170) saved the value 204 to 170 in ext_flash
    Debug: save_byte(204, 171) saved the value 204 to 171 in ext_flash
    Debug: save_byte(204, 172) saved the value 204 to 172 in ext_flash
    Debug: save_byte(204, 173) saved the value 204 to 173 in ext_flash
    Debug: save_byte(204, 174) saved the value 204 to 174 in ext_flash
    Debug: save_byte(204, 175) saved the value 204 to 175 in ext_flash
    Debug: save_byte(204, 176) saved the value 204 to 176 in ext_flash
    Debug: save_byte(204, 177) saved the value 204 to 177 in ext_flash
    Debug: save_byte(204, 178) saved the value 204 to 178 in ext_flash
    Debug: save_byte(204, 179) saved the value 204 to 179 in ext_flash
    Debug: save_byte(204, 180) saved the value 204 to 180 in ext_flash
    Debug: save_byte(204, 181) saved the value 204 to 181 in ext_flash
    Debug: save_byte(204, 182) saved the value 204 to 182 in ext_flash
    Debug: save_byte(204, 183) saved the value 204 to 183 in ext_flash
    Debug: save_byte(204, 184) saved the value 204 to 184 in ext_flash
    Debug: save_byte(204, 185) saved the value 204 to 185 in ext_flash
    Debug: save_byte(204, 186) saved the value 204 to 186 in ext_flash
    Debug: save_byte(204, 187) saved the value 204 to 187 in ext_flash
    Debug: save_byte(204, 188) saved the value 204 to 188 in ext_flash
    Debug: save_byte(204, 189) saved the value 204 to 189 in ext_flash
    Debug: save_byte(204, 190) saved the value 204 to 190 in ext_flash
    Debug: save_byte(204, 191) saved the value 204 to 191 in ext_flash
    Debug: save_byte(204, 192) saved the value 204 to 192 in ext_flash
    Debug: save_byte(204, 193) saved the value 204 to 193 in ext_flash
    Debug: save_byte(204, 194) saved the value 204 to 194 in ext_flash
    Debug: save_byte(204, 195) saved the value 204 to 195 in ext_flash
    Debug: save_byte(204, 196) saved the value 204 to 196 in ext_flash
    Debug: save_byte(204, 197) saved the value 204 to 197 in ext_flash
    Debug: save_byte(204, 198) saved the value 204 to 198 in ext_flash
    Debug: save_byte(204, 199) saved the value 204 to 199 in ext_flash
    Debug: save_byte(204, 200) saved the value 204 to 200 in ext_flash
    Debug: save_byte(204, 201) saved the value 204 to 201 in ext_flash
    Debug: save_byte(204, 202) saved the value 204 to 202 in ext_flash
    Debug: save_byte(204, 203) saved the value 204 to 203 in ext_flash
    Debug: save_byte(204, 204) saved the value 204 to 204 in ext_flash
    Debug: save_byte(204, 205) saved the value 204 to 205 in ext_flash
    Debug: save_byte(204, 206) saved the value 204 to 206 in ext_flash
    Debug: save_byte(204, 207) saved the value 204 to 207 in ext_flash
    Debug: save_byte(204, 208) saved the value 204 to 208 in ext_flash
    Debug: save_byte(204, 209) saved the value 204 to 209 in ext_flash
    Debug: save_byte(204, 210) saved the value 204 to 210 in ext_flash
    Debug: save_byte(204, 211) saved the value 204 to 211 in ext_flash
    Debug: save_byte(204, 212) saved the value 204 to 212 in ext_flash
    Debug: save_byte(204, 213) saved the value 204 to 213 in ext_flash
    Debug: save_byte(204, 214) saved the value 204 to 214 in ext_flash
    Debug: save_byte(204, 215) saved the value 204 to 215 in ext_flash
    Debug: save_byte(204, 216) saved the value 204 to 216 in ext_flash
    Debug: save_byte(204, 217) saved the value 204 to 217 in ext_flash
    Debug: save_byte(204, 218) saved the value 204 to 218 in ext_flash
    Debug: save_byte(204, 219) saved the value 204 to 219 in ext_flash
    Debug: save_byte(204, 220) saved the value 204 to 220 in ext_flash
    Debug: save_byte(204, 221) saved the value 204 to 221 in ext_flash
    Debug: save_byte(204, 222) saved the value 204 to 222 in ext_flash
    Debug: save_byte(204, 223) saved the value 204 to 223 in ext_flash
    Debug: save_byte(204, 224) saved the value 204 to 224 in ext_flash
    Debug: save_byte(204, 225) saved the value 204 to 225 in ext_flash
    Debug: save_byte(204, 226) saved the value 204 to 226 in ext_flash
    Debug: save_byte(204, 227) saved the value 204 to 227 in ext_flash
    Debug: save_byte(204, 228) saved the value 204 to 228 in ext_flash
    Debug: save_byte(204, 229) saved the value 204 to 229 in ext_flash
    Debug: save_byte(204, 230) saved the value 204 to 230 in ext_flash
    Debug: save_byte(204, 231) saved the value 204 to 231 in ext_flash
    Debug: save_byte(204, 232) saved the value 204 to 232 in ext_flash
    Debug: save_byte(204, 233) saved the value 204 to 233 in ext_flash
    Debug: save_byte(204, 234) saved the value 204 to 234 in ext_flash
    Debug: save_byte(204, 235) saved the value 204 to 235 in ext_flash
    Debug: save_byte(204, 236) saved the value 204 to 236 in ext_flash
    Debug: save_byte(204, 237) saved the value 204 to 237 in ext_flash
    Debug: save_byte(204, 238) saved the value 204 to 238 in ext_flash
    Debug: save_byte(204, 239) saved the value 204 to 239 in ext_flash
    Debug: save_byte(204, 240) saved the value 204 to 240 in ext_flash
    Debug: save_byte(204, 241) saved the value 204 to 241 in ext_flash
    Debug: save_byte(204, 242) saved the value 204 to 242 in ext_flash
    Debug: save_byte(204, 243) saved the value 204 to 243 in ext_flash
    Debug: save_byte(204, 244) saved the value 204 to 244 in ext_flash
    Debug: save_byte(204, 245) saved the value 204 to 245 in ext_flash
    Debug: save_byte(204, 246) saved the value 204 to 246 in ext_flash
    Debug: save_byte(204, 247) saved the value 204 to 247 in ext_flash
    Debug: save_byte(204, 248) saved the value 204 to 248 in ext_flash
    Debug: save_byte(204, 249) saved the value 204 to 249 in ext_flash
    Debug: save_byte(204, 250) saved the value 204 to 250 in ext_flash
    Debug: save_byte(204, 251) saved the value 204 to 251 in ext_flash
    Debug: save_byte(204, 252) saved the value 204 to 252 in ext_flash
    Debug: save_byte(204, 253) saved the value 204 to 253 in ext_flash
    Debug: save_byte(204, 254) saved the value 204 to 254 in ext_flash
    Debug: save_byte(204, 255) saved the value 204 to 255 in ext_flash
    Debug: save_byte(204, 256) saved the value 204 to 256 in ext_flash
    Debug: save_byte(204, 257) saved the value 204 to 257 in ext_flash
    Debug: save_byte(204, 258) saved the value 204 to 258 in ext_flash
    Debug: save_byte(204, 259) saved the value 204 to 259 in ext_flash
    Debug: save_byte(204, 260) saved the value 204 to 260 in ext_flash
    Debug: save_byte(204, 261) saved the value 204 to 261 in ext_flash
    Debug: save_byte(204, 262) saved the value 204 to 262 in ext_flash
    Debug: save_byte(204, 263) saved the value 204 to 263 in ext_flash
    Debug: save_byte(204, 264) saved the value 204 to 264 in ext_flash
    Debug: save_byte(204, 265) saved the value 204 to 265 in ext_flash
    Debug: save_byte(204, 266) saved the value 204 to 266 in ext_flash
    Debug: save_byte(204, 267) saved the value 204 to 267 in ext_flash
    Debug: save_byte(204, 268) saved the value 204 to 268 in ext_flash
    Debug: save_byte(204, 269) saved the value 204 to 269 in ext_flash
    Debug: save_byte(204, 270) saved the value 204 to 270 in ext_flash
    Debug: save_byte(204, 271) saved the value 204 to 271 in ext_flash
    Debug: save_byte(204, 272) saved the value 204 to 272 in ext_flash
    Debug: save_byte(204, 273) saved the value 204 to 273 in ext_flash
    Debug: save_byte(204, 274) saved the value 204 to 274 in ext_flash
    Debug: save_byte(204, 275) saved the value 204 to 275 in ext_flash
    Debug: save_byte(204, 276) saved the value 204 to 276 in ext_flash
    Debug: save_byte(204, 277) saved the value 204 to 277 in ext_flash
    Debug: save_byte(204, 278) saved the value 204 to 278 in ext_flash
    Debug: save_byte(204, 279) saved the value 204 to 279 in ext_flash
    Debug: save_byte(204, 280) saved the value 204 to 280 in ext_flash
    Debug: save_byte(204, 281) saved the value 204 to 281 in ext_flash
    Debug: save_byte(204, 282) saved the value 204 to 282 in ext_flash
    Debug: save_byte(204, 283) saved the value 204 to 283 in ext_flash
    Debug: save_byte(204, 284) saved the value 204 to 284 in ext_flash
    Debug: save_byte(204, 285) saved the value 204 to 285 in ext_flash
    Debug: save_byte(204, 286) saved the value 204 to 286 in ext_flash
    Debug: save_byte(204, 287) saved the value 204 to 287 in ext_flash
    Debug: save_byte(204, 288) saved the value 204 to 288 in ext_flash
    Debug: save_byte(204, 289) saved the value 204 to 289 in ext_flash
    Debug: save_byte(204, 290) saved the value 204 to 290 in ext_flash
    Debug: save_byte(204, 291) saved the value 204 to 291 in ext_flash
    Debug: save_byte(204, 292) saved the value 204 to 292 in ext_flash
    Debug: save_byte(204, 293) saved the value 204 to 293 in ext_flash
    Debug: save_byte(204, 294) saved the value 204 to 294 in ext_flash
    Debug: save_byte(204, 295) saved the value 204 to 295 in ext_flash
    Debug: save_byte(204, 296) saved the value 204 to 296 in ext_flash
    Debug: save_byte(204, 297) saved the value 204 to 297 in ext_flash
    Debug: save_byte(204, 298) saved the value 204 to 298 in ext_flash
    Debug: save_byte(204, 299) saved the value 204 to 299 in ext_flash
    Debug: save_byte(204, 300) saved the value 204 to 300 in ext_flash
    Debug: save_byte(204, 301) saved the value 204 to 301 in ext_flash
    Debug: save_byte(204, 302) saved the value 204 to 302 in ext_flash
    Debug: save_byte(204, 303) saved the value 204 to 303 in ext_flash
    Debug: save_byte(204, 304) saved the value 204 to 304 in ext_flash
    Debug: save_byte(204, 305) saved the value 204 to 305 in ext_flash
    Debug: save_byte(204, 306) saved the value 204 to 306 in ext_flash
    Debug: save_byte(204, 307) saved the value 204 to 307 in ext_flash
    Debug: save_byte(204, 308) saved the value 204 to 308 in ext_flash
    Debug: save_byte(204, 309) saved the value 204 to 309 in ext_flash
    Debug: save_byte(204, 310) saved the value 204 to 310 in ext_flash
    Debug: save_byte(204, 311) saved the value 204 to 311 in ext_flash
    Debug: save_byte(204, 312) saved the value 204 to 312 in ext_flash
    Debug: save_byte(204, 313) saved the value 204 to 313 in ext_flash
    Debug: save_byte(204, 314) saved the value 204 to 314 in ext_flash
    Debug: save_byte(204, 315) saved the value 204 to 315 in ext_flash
    Debug: save_byte(204, 316) saved the value 204 to 316 in ext_flash
    Debug: save_byte(204, 317) saved the value 204 to 317 in ext_flash
    Debug: save_byte(204, 318) saved the value 204 to 318 in ext_flash
    Debug: save_byte(204, 319) saved the value 204 to 319 in ext_flash
    Debug: save_byte(204, 320) saved the value 204 to 320 in ext_flash
    Debug: save_byte(204, 321) saved the value 204 to 321 in ext_flash
    Debug: save_byte(204, 322) saved the value 204 to 322 in ext_flash
    Debug: save_byte(204, 323) saved the value 204 to 323 in ext_flash
    Debug: save_byte(204, 324) saved the value 204 to 324 in ext_flash
    Debug: save_byte(204, 325) saved the value 204 to 325 in ext_flash
    Debug: save_byte(204, 326) saved the value 204 to 326 in ext_flash
    Debug: save_byte(204, 327) saved the value 204 to 327 in ext_flash
    Debug: save_byte(204, 328) saved the value 204 to 328 in ext_flash
    Debug: save_byte(204, 329) saved the value 204 to 329 in ext_flash
    Debug: save_byte(204, 330) saved the value 204 to 330 in ext_flash
    Debug: save_byte(204, 331) saved the value 204 to 331 in ext_flash
    Debug: save_byte(204, 332) saved the value 204 to 332 in ext_flash
    Debug: save_byte(204, 333) saved the value 204 to 333 in ext_flash
    Debug: save_byte(204, 334) saved the value 204 to 334 in ext_flash
    Debug: save_byte(204, 335) saved the value 204 to 335 in ext_flash
    Debug: save_byte(204, 336) saved the value 204 to 336 in ext_flash
    Debug: save_byte(204, 337) saved the value 204 to 337 in ext_flash
    Debug: save_byte(204, 338) saved the value 204 to 338 in ext_flash
    Debug: save_byte(204, 339) saved the value 204 to 339 in ext_flash
    Debug: save_byte(204, 340) saved the value 204 to 340 in ext_flash
    Debug: save_byte(204, 341) saved the value 204 to 341 in ext_flash
    Debug: save_byte(204, 342) saved the value 204 to 342 in ext_flash
    Debug: save_byte(204, 343) saved the value 204 to 343 in ext_flash
    Debug: save_byte(204, 344) saved the value 204 to 344 in ext_flash
    Debug: save_byte(204, 345) saved the value 204 to 345 in ext_flash
    Debug: save_byte(204, 346) saved the value 204 to 346 in ext_flash
    Debug: save_byte(204, 347) saved the value 204 to 347 in ext_flash
    Debug: save_byte(204, 348) saved the value 204 to 348 in ext_flash
    Debug: save_byte(204, 349) saved the value 204 to 349 in ext_flash
    Debug: save_byte(204, 350) saved the value 204 to 350 in ext_flash
    Debug: save_byte(204, 351) saved the value 204 to 351 in ext_flash
    Debug: save_byte(204, 352) saved the value 204 to 352 in ext_flash
    Debug: save_byte(204, 353) saved the value 204 to 353 in ext_flash
    Debug: save_byte(204, 354) saved the value 204 to 354 in ext_flash
    Debug: save_byte(204, 355) saved the value 204 to 355 in ext_flash
    Debug: save_byte(204, 356) saved the value 204 to 356 in ext_flash
    Debug: save_byte(204, 357) saved the value 204 to 357 in ext_flash
    Debug: save_byte(204, 358) saved the value 204 to 358 in ext_flash
    Debug: save_byte(204, 359) saved the value 204 to 359 in ext_flash
    Debug: save_byte(204, 360) saved the value 204 to 360 in ext_flash
    Debug: save_byte(204, 361) saved the value 204 to 361 in ext_flash
    Debug: save_byte(204, 362) saved the value 204 to 362 in ext_flash
    Debug: save_byte(204, 363) saved the value 204 to 363 in ext_flash
    Debug: save_byte(204, 364) saved the value 204 to 364 in ext_flash
    Debug: save_byte(204, 365) saved the value 204 to 365 in ext_flash
    Debug: save_byte(204, 366) saved the value 204 to 366 in ext_flash
    Debug: save_byte(204, 367) saved the value 204 to 367 in ext_flash
    Debug: save_byte(204, 368) saved the value 204 to 368 in ext_flash
    Debug: save_byte(204, 369) saved the value 204 to 369 in ext_flash
    Debug: save_byte(204, 370) saved the value 204 to 370 in ext_flash
    Debug: save_byte(204, 371) saved the value 204 to 371 in ext_flash
    Debug: save_byte(204, 372) saved the value 204 to 372 in ext_flash
    Debug: save_byte(204, 373) saved the value 204 to 373 in ext_flash
    Debug: save_byte(204, 374) saved the value 204 to 374 in ext_flash
    Debug: save_byte(204, 375) saved the value 204 to 375 in ext_flash
    Debug: save_byte(204, 376) saved the value 204 to 376 in ext_flash
    Debug: save_byte(204, 377) saved the value 204 to 377 in ext_flash
    Debug: save_byte(204, 378) saved the value 204 to 378 in ext_flash
    Debug: save_byte(204, 379) saved the value 204 to 379 in ext_flash
    Debug: save_byte(204, 380) saved the value 204 to 380 in ext_flash
    Debug: save_byte(204, 381) saved the value 204 to 381 in ext_flash
    Debug: save_byte(204, 382) saved the value 204 to 382 in ext_flash
    Debug: save_byte(204, 383) saved the value 204 to 383 in ext_flash
    Debug: save_byte(204, 384) saved the value 204 to 384 in ext_flash
    Debug: save_byte(204, 385) saved the value 204 to 385 in ext_flash
    Debug: save_byte(204, 386) saved the value 204 to 386 in ext_flash
    Debug: save_byte(204, 387) saved the value 204 to 387 in ext_flash
    Debug: save_byte(204, 388) saved the value 204 to 388 in ext_flash
    Debug: save_byte(204, 389) saved the value 204 to 389 in ext_flash
    Debug: save_byte(204, 390) saved the value 204 to 390 in ext_flash
    Debug: save_byte(204, 391) saved the value 204 to 391 in ext_flash
    Debug: save_byte(204, 392) saved the value 204 to 392 in ext_flash
    Debug: save_byte(204, 393) saved the value 204 to 393 in ext_flash
    Debug: save_byte(204, 394) saved the value 204 to 394 in ext_flash
    Debug: save_byte(204, 395) saved the value 204 to 395 in ext_flash
    Debug: save_byte(204, 396) saved the value 204 to 396 in ext_flash
    Debug: save_byte(204, 397) saved the value 204 to 397 in ext_flash
    Debug: save_byte(204, 398) saved the value 204 to 398 in ext_flash
    Debug: save_byte(204, 399) saved the value 204 to 399 in ext_flash
    Debug: save_byte(204, 400) saved the value 204 to 400 in ext_flash
    Debug: save_byte(204, 401) saved the value 204 to 401 in ext_flash
    Debug: save_byte(204, 402) saved the value 204 to 402 in ext_flash
    Debug: save_byte(204, 403) saved the value 204 to 403 in ext_flash
    Debug: save_byte(204, 404) saved the value 204 to 404 in ext_flash
    Debug: save_byte(204, 405) saved the value 204 to 405 in ext_flash
    Debug: save_byte(204, 406) saved the value 204 to 406 in ext_flash
    Debug: save_byte(204, 407) saved the value 204 to 407 in ext_flash
    Debug: save_byte(204, 408) saved the value 204 to 408 in ext_flash
    Debug: save_byte(204, 409) saved the value 204 to 409 in ext_flash
    Debug: save_byte(204, 410) saved the value 204 to 410 in ext_flash
    Debug: save_byte(204, 411) saved the value 204 to 411 in ext_flash
    Debug: save_byte(204, 412) saved the value 204 to 412 in ext_flash
    Debug: save_byte(204, 413) saved the value 204 to 413 in ext_flash
    Debug: save_byte(204, 414) saved the value 204 to 414 in ext_flash
    Debug: save_byte(204, 415) saved the value 204 to 415 in ext_flash
    Debug: save_byte(204, 416) saved the value 204 to 416 in ext_flash
    Debug: save_byte(204, 417) saved the value 204 to 417 in ext_flash
    Debug: save_byte(204, 418) saved the value 204 to 418 in ext_flash
    Debug: save_byte(204, 419) saved the value 204 to 419 in ext_flash
    Debug: save_byte(204, 420) saved the value 204 to 420 in ext_flash
    Debug: save_byte(204, 421) saved the value 204 to 421 in ext_flash
    Debug: save_byte(204, 422) saved the value 204 to 422 in ext_flash
    Debug: save_byte(204, 423) saved the value 204 to 423 in ext_flash
    Debug: save_byte(204, 424) saved the value 204 to 424 in ext_flash
    Debug: save_byte(204, 425) saved the value 204 to 425 in ext_flash
    Debug: save_byte(204, 426) saved the value 204 to 426 in ext_flash
    Debug: save_byte(204, 427) saved the value 204 to 427 in ext_flash
    Debug: save_byte(204, 428) saved the value 204 to 428 in ext_flash
    Debug: save_byte(204, 429) saved the value 204 to 429 in ext_flash
    Debug: save_byte(204, 430) saved the value 204 to 430 in ext_flash
    Debug: save_byte(204, 431) saved the value 204 to 431 in ext_flash
    Debug: save_byte(204, 432) saved the value 204 to 432 in ext_flash
    Debug: save_byte(204, 433) saved the value 204 to 433 in ext_flash
    Debug: save_byte(204, 434) saved the value 204 to 434 in ext_flash
    Debug: save_byte(204, 435) saved the value 204 to 435 in ext_flash
    Debug: save_byte(204, 436) saved the value 204 to 436 in ext_flash
    Debug: save_byte(204, 437) saved the value 204 to 437 in ext_flash
    Debug: save_byte(204, 438) saved the value 204 to 438 in ext_flash
    Debug: save_byte(204, 439) saved the value 204 to 439 in ext_flash
    Debug: save_byte(204, 440) saved the value 204 to 440 in ext_flash
    Debug: save_byte(204, 441) saved the value 204 to 441 in ext_flash
    Debug: save_byte(204, 442) saved the value 204 to 442 in ext_flash
    Debug: save_byte(204, 443) saved the value 204 to 443 in ext_flash
    Debug: save_byte(204, 444) saved the value 204 to 444 in ext_flash
    Debug: save_byte(204, 445) saved the value 204 to 445 in ext_flash
    Debug: save_byte(204, 446) saved the value 204 to 446 in ext_flash
    Debug: save_byte(204, 447) saved the value 204 to 447 in ext_flash
    Debug: save_byte(204, 448) saved the value 204 to 448 in ext_flash
    Debug: save_byte(204, 449) saved the value 204 to 449 in ext_flash
    Debug: save_byte(204, 450) saved the value 204 to 450 in ext_flash
    Debug: save_byte(204, 451) saved the value 204 to 451 in ext_flash
    Debug: save_byte(204, 452) saved the value 204 to 452 in ext_flash
    Debug: save_byte(204, 453) saved the value 204 to 453 in ext_flash
    Debug: save_byte(204, 454) saved the value 204 to 454 in ext_flash
    Debug: save_byte(204, 455) saved the value 204 to 455 in ext_flash
    Debug: save_byte(204, 456) saved the value 204 to 456 in ext_flash
    Debug: save_byte(204, 457) saved the value 204 to 457 in ext_flash
    Debug: save_byte(204, 458) saved the value 204 to 458 in ext_flash
    Debug: save_byte(204, 459) saved the value 204 to 459 in ext_flash
    Debug: save_byte(204, 460) saved the value 204 to 460 in ext_flash
    Debug: save_byte(204, 461) saved the value 204 to 461 in ext_flash
    Debug: save_byte(204, 462) saved the value 204 to 462 in ext_flash
    Debug: save_byte(204, 463) saved the value 204 to 463 in ext_flash
    Debug: save_byte(204, 464) saved the value 204 to 464 in ext_flash
    Debug: save_byte(204, 465) saved the value 204 to 465 in ext_flash
    Debug: save_byte(204, 466) saved the value 204 to 466 in ext_flash
    Debug: save_byte(204, 467) saved the value 204 to 467 in ext_flash
    Debug: save_byte(204, 468) saved the value 204 to 468 in ext_flash
    Debug: save_byte(204, 469) saved the value 204 to 469 in ext_flash
    Debug: save_byte(204, 470) saved the value 204 to 470 in ext_flash
    Debug: save_byte(204, 471) saved the value 204 to 471 in ext_flash
    Debug: save_byte(204, 472) saved the value 204 to 472 in ext_flash
    Debug: save_byte(204, 473) saved the value 204 to 473 in ext_flash
    Debug: save_byte(204, 474) saved the value 204 to 474 in ext_flash
    Debug: save_byte(204, 475) saved the value 204 to 475 in ext_flash
    Debug: save_byte(204, 476) saved the value 204 to 476 in ext_flash
    Debug: save_byte(204, 477) saved the value 204 to 477 in ext_flash
    Debug: save_byte(204, 478) saved the value 204 to 478 in ext_flash
    Debug: save_byte(204, 479) saved the value 204 to 479 in ext_flash
    Debug: save_byte(204, 480) saved the value 204 to 480 in ext_flash
    Debug: save_byte(204, 481) saved the value 204 to 481 in ext_flash
    Debug: save_byte(204, 482) saved the value 204 to 482 in ext_flash
    Debug: save_byte(204, 483) saved the value 204 to 483 in ext_flash
    Debug: save_byte(204, 484) saved the value 204 to 484 in ext_flash
    Debug: save_byte(204, 485) saved the value 204 to 485 in ext_flash
    Debug: save_byte(204, 486) saved the value 204 to 486 in ext_flash
    Debug: save_byte(204, 487) saved the value 204 to 487 in ext_flash
    Debug: save_byte(204, 488) saved the value 204 to 488 in ext_flash
    Debug: save_byte(204, 489) saved the value 204 to 489 in ext_flash
    Debug: save_byte(204, 490) saved the value 204 to 490 in ext_flash
    Debug: save_byte(204, 491) saved the value 204 to 491 in ext_flash
    Debug: save_byte(204, 492) saved the value 204 to 492 in ext_flash
    Debug: save_byte(204, 493) saved the value 204 to 493 in ext_flash
    Debug: save_byte(204, 494) saved the value 204 to 494 in ext_flash
    Debug: save_byte(204, 495) saved the value 204 to 495 in ext_flash
    Debug: save_byte(204, 496) saved the value 204 to 496 in ext_flash
    Debug: save_byte(204, 497) saved the value 204 to 497 in ext_flash
    Debug: save_byte(204, 498) saved the value 204 to 498 in ext_flash
    Debug: save_byte(204, 499) saved the value 204 to 499 in ext_flash
    Debug: save_byte(204, 500) saved the value 204 to 500 in ext_flash
    Debug: save_byte(204, 501) saved the value 204 to 501 in ext_flash
    Debug: save_byte(204, 502) saved the value 204 to 502 in ext_flash
    Debug: save_byte(204, 503) saved the value 204 to 503 in ext_flash
    Debug: save_byte(204, 504) saved the value 204 to 504 in ext_flash
    Debug: save_byte(204, 505) saved the value 204 to 505 in ext_flash
    Debug: save_byte(204, 506) saved the value 204 to 506 in ext_flash
    Debug: save_byte(204, 507) saved the value 204 to 507 in ext_flash
    Debug: save_byte(204, 508) saved the value 204 to 508 in ext_flash
    Debug: save_byte(204, 509) saved the value 204 to 509 in ext_flash
    Debug: save_byte(204, 510) saved the value 204 to 510 in ext_flash
    Debug: save_byte(204, 511) saved the value 204 to 511 in ext_flash
    Debug: save_byte(204, 512) saved the value 204 to 512 in ext_flash
    Debug: save_byte(204, 513) saved the value 204 to 513 in ext_flash
    Debug: save_byte(204, 514) saved the value 204 to 514 in ext_flash
    Debug: save_byte(204, 515) saved the value 204 to 515 in ext_flash
    Debug: save_byte(204, 516) saved the value 204 to 516 in ext_flash
    Debug: save_byte(204, 517) saved the value 204 to 517 in ext_flash
    Debug: save_byte(204, 518) saved the value 204 to 518 in ext_flash
    Debug: save_byte(204, 519) saved the value 204 to 519 in ext_flash
    Debug: save_byte(204, 520) saved the value 204 to 520 in ext_flash
    Debug: save_byte(204, 521) saved the value 204 to 521 in ext_flash
    Debug: save_byte(204, 522) saved the value 204 to 522 in ext_flash
    Debug: save_byte(204, 523) saved the value 204 to 523 in ext_flash
    Debug: save_byte(204, 524) saved the value 204 to 524 in ext_flash
    Debug: save_byte(204, 525) saved the value 204 to 525 in ext_flash
    Debug: save_byte(204, 526) saved the value 204 to 526 in ext_flash
    Debug: save_byte(204, 527) saved the value 204 to 527 in ext_flash
    Debug: save_byte(204, 528) saved the value 204 to 528 in ext_flash
    Debug: save_byte(204, 529) saved the value 204 to 529 in ext_flash
    Debug: save_byte(204, 530) saved the value 204 to 530 in ext_flash
    Debug: save_byte(204, 531) saved the value 204 to 531 in ext_flash
    Debug: save_byte(204, 532) saved the value 204 to 532 in ext_flash
    Debug: save_byte(204, 533) saved the value 204 to 533 in ext_flash
    Debug: save_byte(204, 534) saved the value 204 to 534 in ext_flash
    Debug: save_byte(204, 535) saved the value 204 to 535 in ext_flash
    Debug: save_byte(204, 536) saved the value 204 to 536 in ext_flash
    Debug: save_byte(204, 537) saved the value 204 to 537 in ext_flash
    Debug: save_byte(204, 538) saved the value 204 to 538 in ext_flash
    Debug: save_byte(204, 539) saved the value 204 to 539 in ext_flash
    Debug: save_byte(204, 540) saved the value 204 to 540 in ext_flash
    Debug: save_byte(204, 541) saved the value 204 to 541 in ext_flash
    Debug: save_byte(204, 542) saved the value 204 to 542 in ext_flash
    Debug: save_byte(204, 543) saved the value 204 to 543 in ext_flash
    Debug: save_byte(204, 544) saved the value 204 to 544 in ext_flash
    Debug: save_byte(204, 545) saved the value 204 to 545 in ext_flash
    Debug: save_byte(204, 546) saved the value 204 to 546 in ext_flash
    Debug: save_byte(204, 547) saved the value 204 to 547 in ext_flash
    Debug: save_byte(204, 548) saved the value 204 to 548 in ext_flash
    Debug: save_byte(204, 549) saved the value 204 to 549 in ext_flash
    Debug: save_byte(204, 550) saved the value 204 to 550 in ext_flash
    Debug: save_byte(204, 551) saved the value 204 to 551 in ext_flash
    Debug: save_byte(204, 552) saved the value 204 to 552 in ext_flash
    Debug: save_byte(204, 553) saved the value 204 to 553 in ext_flash
    Debug: save_byte(204, 554) saved the value 204 to 554 in ext_flash
    Debug: save_byte(204, 555) saved the value 204 to 555 in ext_flash
    Debug: save_byte(204, 556) saved the value 204 to 556 in ext_flash
    Debug: save_byte(204, 557) saved the value 204 to 557 in ext_flash
    Debug: save_byte(204, 558) saved the value 204 to 558 in ext_flash
    Debug: save_byte(204, 559) saved the value 204 to 559 in ext_flash
    Debug: save_byte(204, 560) saved the value 204 to 560 in ext_flash
    Debug: save_byte(204, 561) saved the value 204 to 561 in ext_flash
    Debug: save_byte(204, 562) saved the value 204 to 562 in ext_flash
    Debug: save_byte(204, 563) saved the value 204 to 563 in ext_flash
    Debug: save_byte(204, 564) saved the value 204 to 564 in ext_flash
    Debug: save_byte(204, 565) saved the value 204 to 565 in ext_flash
    Debug: save_byte(204, 566) saved the value 204 to 566 in ext_flash
    Debug: save_byte(204, 567) saved the value 204 to 567 in ext_flash
    Debug: save_byte(204, 568) saved the value 204 to 568 in ext_flash
    Debug: save_byte(204, 569) saved the value 204 to 569 in ext_flash
    Debug: save_byte(204, 570) saved the value 204 to 570 in ext_flash
    Debug: save_byte(204, 571) saved the value 204 to 571 in ext_flash
    Debug: save_byte(204, 572) saved the value 204 to 572 in ext_flash
    Debug: save_byte(204, 573) saved the value 204 to 573 in ext_flash
    Debug: save_byte(204, 574) saved the value 204 to 574 in ext_flash
    Debug: save_byte(204, 575) saved the value 204 to 575 in ext_flash
    Debug: save_byte(204, 576) saved the value 204 to 576 in ext_flash
    Debug: save_byte(204, 577) saved the value 204 to 577 in ext_flash
    Debug: save_byte(204, 578) saved the value 204 to 578 in ext_flash
    Debug: save_byte(204, 579) saved the value 204 to 579 in ext_flash
    Debug: save_byte(204, 580) saved the value 204 to 580 in ext_flash
    Debug: save_byte(204, 581) saved the value 204 to 581 in ext_flash
    Debug: save_byte(204, 582) saved the value 204 to 582 in ext_flash
    Debug: save_byte(204, 583) saved the value 204 to 583 in ext_flash
    Debug: save_byte(204, 584) saved the value 204 to 584 in ext_flash
    Debug: save_byte(204, 585) saved the value 204 to 585 in ext_flash
    Debug: save_byte(204, 586) saved the value 204 to 586 in ext_flash
    Debug: save_byte(204, 587) saved the value 204 to 587 in ext_flash
    Debug: save_byte(204, 588) saved the value 204 to 588 in ext_flash
    Debug: save_byte(204, 589) saved the value 204 to 589 in ext_flash
    Debug: save_byte(204, 590) saved the value 204 to 590 in ext_flash
    Debug: save_byte(204, 591) saved the value 204 to 591 in ext_flash
    Debug: save_byte(204, 592) saved the value 204 to 592 in ext_flash
    Debug: save_byte(204, 593) saved the value 204 to 593 in ext_flash
    Debug: save_byte(204, 594) saved the value 204 to 594 in ext_flash
    Debug: save_byte(204, 595) saved the value 204 to 595 in ext_flash
    Debug: save_byte(204, 596) saved the value 204 to 596 in ext_flash
    Debug: save_byte(204, 597) saved the value 204 to 597 in ext_flash
    Debug: save_byte(204, 598) saved the value 204 to 598 in ext_flash
    Debug: save_byte(204, 599) saved the value 204 to 599 in ext_flash
    Debug: save_byte(204, 600) saved the value 204 to 600 in ext_flash
    Debug: save_byte(204, 601) saved the value 204 to 601 in ext_flash
    Debug: save_byte(204, 602) saved the value 204 to 602 in ext_flash
    Debug: save_byte(204, 603) saved the value 204 to 603 in ext_flash
    Debug: save_byte(204, 604) saved the value 204 to 604 in ext_flash
    Debug: save_byte(204, 605) saved the value 204 to 605 in ext_flash
    Debug: save_byte(204, 606) saved the value 204 to 606 in ext_flash
    Debug: save_byte(204, 607) saved the value 204 to 607 in ext_flash
    Debug: save_byte(204, 608) saved the value 204 to 608 in ext_flash
    Debug: save_byte(204, 609) saved the value 204 to 609 in ext_flash
    Debug: save_byte(204, 610) saved the value 204 to 610 in ext_flash
    Debug: save_byte(204, 611) saved the value 204 to 611 in ext_flash
    Debug: save_byte(204, 612) saved the value 204 to 612 in ext_flash
    Debug: save_byte(204, 613) saved the value 204 to 613 in ext_flash
    Debug: save_byte(204, 614) saved the value 204 to 614 in ext_flash
    Debug: save_byte(204, 615) saved the value 204 to 615 in ext_flash
    Debug: save_byte(204, 616) saved the value 204 to 616 in ext_flash
    Debug: save_byte(204, 617) saved the value 204 to 617 in ext_flash
    Debug: save_byte(204, 618) saved the value 204 to 618 in ext_flash
    Debug: save_byte(204, 619) saved the value 204 to 619 in ext_flash
    Debug: save_byte(204, 620) saved the value 204 to 620 in ext_flash
    Debug: save_byte(204, 621) saved the value 204 to 621 in ext_flash
    Debug: save_byte(204, 622) saved the value 204 to 622 in ext_flash
    Debug: save_byte(204, 623) saved the value 204 to 623 in ext_flash
    Debug: save_byte(204, 624) saved the value 204 to 624 in ext_flash
    Debug: save_byte(204, 625) saved the value 204 to 625 in ext_flash
    Debug: save_byte(204, 626) saved the value 204 to 626 in ext_flash
    Debug: save_byte(204, 627) saved the value 204 to 627 in ext_flash
    Debug: save_byte(204, 628) saved the value 204 to 628 in ext_flash
    Debug: save_byte(204, 629) saved the value 204 to 629 in ext_flash
    Debug: save_byte(204, 630) saved the value 204 to 630 in ext_flash
    Debug: save_byte(204, 631) saved the value 204 to 631 in ext_flash
    Debug: save_byte(204, 632) saved the value 204 to 632 in ext_flash
    Debug: save_byte(204, 633) saved the value 204 to 633 in ext_flash
    Debug: save_byte(204, 634) saved the value 204 to 634 in ext_flash
    Debug: save_byte(204, 635) saved the value 204 to 635 in ext_flash
    Debug: save_byte(204, 636) saved the value 204 to 636 in ext_flash
    Debug: save_byte(204, 637) saved the value 204 to 637 in ext_flash
    Debug: save_byte(204, 638) saved the value 204 to 638 in ext_flash
    Debug: save_byte(204, 639) saved the value 204 to 639 in ext_flash
    Debug: save_byte(204, 640) saved the value 204 to 640 in ext_flash
    Debug: save_byte(204, 641) saved the value 204 to 641 in ext_flash
    Debug: save_byte(204, 642) saved the value 204 to 642 in ext_flash
    Debug: save_byte(204, 643) saved the value 204 to 643 in ext_flash
    Debug: save_byte(204, 644) saved the value 204 to 644 in ext_flash
    Debug: save_byte(204, 645) saved the value 204 to 645 in ext_flash
    Debug: save_byte(204, 646) saved the value 204 to 646 in ext_flash
    Debug: save_byte(204, 647) saved the value 204 to 647 in ext_flash
    Debug: save_byte(204, 648) saved the value 204 to 648 in ext_flash
    Debug: save_byte(204, 649) saved the value 204 to 649 in ext_flash
    Debug: save_byte(204, 650) saved the value 204 to 650 in ext_flash
    Debug: save_byte(204, 651) saved the value 204 to 651 in ext_flash
    Debug: save_byte(204, 652) saved the value 204 to 652 in ext_flash
    Debug: save_byte(204, 653) saved the value 204 to 653 in ext_flash
    Debug: save_byte(204, 654) saved the value 204 to 654 in ext_flash
    Debug: save_byte(204, 655) saved the value 204 to 655 in ext_flash
    Debug: save_byte(204, 656) saved the value 204 to 656 in ext_flash
    Debug: save_byte(204, 657) saved the value 204 to 657 in ext_flash
    Debug: save_byte(204, 658) saved the value 204 to 658 in ext_flash
    Debug: save_byte(204, 659) saved the value 204 to 659 in ext_flash
    Debug: save_byte(204, 660) saved the value 204 to 660 in ext_flash
    Debug: save_byte(204, 661) saved the value 204 to 661 in ext_flash
    Debug: save_byte(204, 662) saved the value 204 to 662 in ext_flash
    Debug: save_byte(204, 663) saved the value 204 to 663 in ext_flash
    Debug: save_byte(204, 664) saved the value 204 to 664 in ext_flash
    Debug: save_byte(204, 665) saved the value 204 to 665 in ext_flash
    Debug: save_byte(204, 666) saved the value 204 to 666 in ext_flash
    Debug: save_byte(204, 667) saved the value 204 to 667 in ext_flash
    Debug: save_byte(204, 668) saved the value 204 to 668 in ext_flash
    Debug: save_byte(204, 669) saved the value 204 to 669 in ext_flash
    Debug: save_byte(204, 670) saved the value 204 to 670 in ext_flash
    Debug: save_byte(204, 671) saved the value 204 to 671 in ext_flash
    Debug: save_byte(204, 672) saved the value 204 to 672 in ext_flash
    Debug: save_byte(204, 673) saved the value 204 to 673 in ext_flash
    Debug: save_byte(204, 674) saved the value 204 to 674 in ext_flash
    Debug: save_byte(204, 675) saved the value 204 to 675 in ext_flash
    Debug: save_byte(204, 676) saved the value 204 to 676 in ext_flash
    Debug: save_byte(204, 677) saved the value 204 to 677 in ext_flash
    Debug: save_byte(204, 678) saved the value 204 to 678 in ext_flash
    Debug: save_byte(204, 679) saved the value 204 to 679 in ext_flash
    Debug: save_byte(204, 680) saved the value 204 to 680 in ext_flash
    Debug: save_byte(204, 681) saved the value 204 to 681 in ext_flash
    Debug: save_byte(204, 682) saved the value 204 to 682 in ext_flash
    Debug: save_byte(204, 683) saved the value 204 to 683 in ext_flash
    Debug: save_byte(204, 684) saved the value 204 to 684 in ext_flash
    Debug: save_byte(204, 685) saved the value 204 to 685 in ext_flash
    Debug: save_byte(204, 686) saved the value 204 to 686 in ext_flash
    Debug: save_byte(204, 687) saved the value 204 to 687 in ext_flash
    Debug: save_byte(204, 688) saved the value 204 to 688 in ext_flash
    Debug: save_byte(204, 689) saved the value 204 to 689 in ext_flash
    Debug: save_byte(204, 690) saved the value 204 to 690 in ext_flash
    Debug: save_byte(204, 691) saved the value 204 to 691 in ext_flash
    Debug: save_byte(204, 692) saved the value 204 to 692 in ext_flash
    Debug: save_byte(204, 693) saved the value 204 to 693 in ext_flash
    Debug: save_byte(204, 694) saved the value 204 to 694 in ext_flash
    Debug: save_byte(204, 695) saved the value 204 to 695 in ext_flash
    Debug: save_byte(204, 696) saved the value 204 to 696 in ext_flash
    Debug: save_byte(204, 697) saved the value 204 to 697 in ext_flash
    Debug: save_byte(204, 698) saved the value 204 to 698 in ext_flash
    Debug: save_byte(204, 699) saved the value 204 to 699 in ext_flash
    Debug: save_byte(204, 700) saved the value 204 to 700 in ext_flash
    Debug: save_byte(204, 701) saved the value 204 to 701 in ext_flash
    Debug: save_byte(204, 702) saved the value 204 to 702 in ext_flash
    Debug: save_byte(204, 703) saved the value 204 to 703 in ext_flash
    Debug: save_byte(204, 704) saved the value 204 to 704 in ext_flash
    Debug: save_byte(204, 705) saved the value 204 to 705 in ext_flash
    Debug: save_byte(204, 706) saved the value 204 to 706 in ext_flash
    Debug: save_byte(204, 707) saved the value 204 to 707 in ext_flash
    Debug: save_byte(204, 708) saved the value 204 to 708 in ext_flash
    Debug: save_byte(204, 709) saved the value 204 to 709 in ext_flash
    Debug: save_byte(204, 710) saved the value 204 to 710 in ext_flash
    Debug: save_byte(204, 711) saved the value 204 to 711 in ext_flash
    Debug: save_byte(204, 712) saved the value 204 to 712 in ext_flash
    Debug: save_byte(204, 713) saved the value 204 to 713 in ext_flash
    Debug: save_byte(204, 714) saved the value 204 to 714 in ext_flash
    Debug: save_byte(204, 715) saved the value 204 to 715 in ext_flash
    Debug: save_byte(204, 716) saved the value 204 to 716 in ext_flash
    Debug: save_byte(204, 717) saved the value 204 to 717 in ext_flash
    Debug: save_byte(204, 718) saved the value 204 to 718 in ext_flash
    Debug: save_byte(204, 719) saved the value 204 to 719 in ext_flash
    Debug: save_byte(204, 720) saved the value 204 to 720 in ext_flash
    Debug: save_byte(204, 721) saved the value 204 to 721 in ext_flash
    Debug: save_byte(204, 722) saved the value 204 to 722 in ext_flash
    Debug: save_byte(204, 723) saved the value 204 to 723 in ext_flash
    Debug: save_byte(204, 724) saved the value 204 to 724 in ext_flash
    Debug: save_byte(204, 725) saved the value 204 to 725 in ext_flash
    Debug: save_byte(204, 726) saved the value 204 to 726 in ext_flash
    Debug: save_byte(204, 727) saved the value 204 to 727 in ext_flash
    Debug: save_byte(204, 728) saved the value 204 to 728 in ext_flash
    Debug: save_byte(204, 729) saved the value 204 to 729 in ext_flash
    Debug: save_byte(204, 730) saved the value 204 to 730 in ext_flash
    Debug: save_byte(204, 731) saved the value 204 to 731 in ext_flash
    Debug: save_byte(204, 732) saved the value 204 to 732 in ext_flash
    Debug: save_byte(204, 733) saved the value 204 to 733 in ext_flash
    Debug: save_byte(204, 734) saved the value 204 to 734 in ext_flash
    Debug: save_byte(204, 735) saved the value 204 to 735 in ext_flash
    Debug: save_byte(204, 736) saved the value 204 to 736 in ext_flash
    Debug: save_byte(204, 737) saved the value 204 to 737 in ext_flash
    Debug: save_byte(204, 738) saved the value 204 to 738 in ext_flash
    Debug: save_byte(204, 739) saved the value 204 to 739 in ext_flash
    Debug: save_byte(204, 740) saved the value 204 to 740 in ext_flash
    Debug: save_byte(204, 741) saved the value 204 to 741 in ext_flash
    Debug: save_byte(204, 742) saved the value 204 to 742 in ext_flash
    Debug: save_byte(204, 743) saved the value 204 to 743 in ext_flash
    Debug: save_byte(204, 744) saved the value 204 to 744 in ext_flash
    Debug: save_byte(204, 745) saved the value 204 to 745 in ext_flash
    Debug: save_byte(204, 746) saved the value 204 to 746 in ext_flash
    Debug: save_byte(204, 747) saved the value 204 to 747 in ext_flash
    Debug: save_byte(204, 748) saved the value 204 to 748 in ext_flash
    Debug: save_byte(204, 749) saved the value 204 to 749 in ext_flash
    Debug: save_byte(204, 750) saved the value 204 to 750 in ext_flash
    Debug: save_byte(204, 751) saved the value 204 to 751 in ext_flash
    Debug: save_byte(204, 752) saved the value 204 to 752 in ext_flash
    Debug: save_byte(204, 753) saved the value 204 to 753 in ext_flash
    Debug: save_byte(204, 754) saved the value 204 to 754 in ext_flash
    Debug: save_byte(204, 755) saved the value 204 to 755 in ext_flash
    Debug: save_byte(204, 756) saved the value 204 to 756 in ext_flash
    Debug: save_byte(204, 757) saved the value 204 to 757 in ext_flash
    Debug: save_byte(204, 758) saved the value 204 to 758 in ext_flash
    Debug: save_byte(204, 759) saved the value 204 to 759 in ext_flash
    Debug: save_byte(204, 760) saved the value 204 to 760 in ext_flash
    Debug: save_byte(204, 761) saved the value 204 to 761 in ext_flash
    Debug: save_byte(204, 762) saved the value 204 to 762 in ext_flash
    Debug: save_byte(204, 763) saved the value 204 to 763 in ext_flash
    Debug: save_byte(204, 764) saved the value 204 to 764 in ext_flash
    Debug: save_byte(204, 765) saved the value 204 to 765 in ext_flash
    Debug: save_byte(204, 766) saved the value 204 to 766 in ext_flash
    Debug: save_byte(204, 767) saved the value 204 to 767 in ext_flash
    Debug: save_byte(204, 768) saved the value 204 to 768 in ext_flash
    Debug: save_byte(204, 769) saved the value 204 to 769 in ext_flash
    Debug: save_byte(204, 770) saved the value 204 to 770 in ext_flash
    Debug: save_byte(204, 771) saved the value 204 to 771 in ext_flash
    Debug: save_byte(204, 772) saved the value 204 to 772 in ext_flash
    Debug: save_byte(204, 773) saved the value 204 to 773 in ext_flash
    Debug: save_byte(204, 774) saved the value 204 to 774 in ext_flash
    Debug: save_byte(204, 775) saved the value 204 to 775 in ext_flash
    Debug: save_byte(204, 776) saved the value 204 to 776 in ext_flash
    Debug: save_byte(204, 777) saved the value 204 to 777 in ext_flash
    Debug: save_byte(204, 778) saved the value 204 to 778 in ext_flash
    Debug: save_byte(204, 779) saved the value 204 to 779 in ext_flash
    Debug: save_byte(204, 780) saved the value 204 to 780 in ext_flash
    Debug: save_byte(204, 781) saved the value 204 to 781 in ext_flash
    Debug: save_byte(204, 782) saved the value 204 to 782 in ext_flash
    Debug: save_byte(204, 783) saved the value 204 to 783 in ext_flash
    Debug: save_byte(204, 784) saved the value 204 to 784 in ext_flash
    Debug: save_byte(204, 785) saved the value 204 to 785 in ext_flash
    Debug: save_byte(204, 786) saved the value 204 to 786 in ext_flash
    Debug: save_byte(204, 787) saved the value 204 to 787 in ext_flash
    Debug: save_byte(204, 788) saved the value 204 to 788 in ext_flash
    Debug: save_byte(204, 789) saved the value 204 to 789 in ext_flash
    Debug: save_byte(204, 790) saved the value 204 to 790 in ext_flash
    Debug: save_byte(204, 791) saved the value 204 to 791 in ext_flash
    Debug: save_byte(204, 792) saved the value 204 to 792 in ext_flash
    Debug: save_byte(204, 793) saved the value 204 to 793 in ext_flash
    Debug: save_byte(204, 794) saved the value 204 to 794 in ext_flash
    Debug: save_byte(204, 795) saved the value 204 to 795 in ext_flash
    Debug: save_byte(204, 796) saved the value 204 to 796 in ext_flash
    Debug: save_byte(204, 797) saved the value 204 to 797 in ext_flash
    Debug: save_byte(204, 798) saved the value 204 to 798 in ext_flash
    Debug: save_byte(204, 799) saved the value 204 to 799 in ext_flash
    Debug: save_byte(204, 800) saved the value 204 to 800 in ext_flash
    Debug: save_byte(204, 801) saved the value 204 to 801 in ext_flash
    Debug: save_byte(204, 802) saved the value 204 to 802 in ext_flash
    Debug: save_byte(204, 803) saved the value 204 to 803 in ext_flash
    Debug: save_byte(204, 804) saved the value 204 to 804 in ext_flash
    Debug: save_byte(204, 805) saved the value 204 to 805 in ext_flash
    Debug: save_byte(204, 806) saved the value 204 to 806 in ext_flash
    Debug: save_byte(204, 807) saved the value 204 to 807 in ext_flash
    Debug: save_byte(204, 808) saved the value 204 to 808 in ext_flash
    Debug: save_byte(204, 809) saved the value 204 to 809 in ext_flash
    Debug: save_byte(204, 810) saved the value 204 to 810 in ext_flash
    Debug: save_byte(204, 811) saved the value 204 to 811 in ext_flash
    Debug: save_byte(204, 812) saved the value 204 to 812 in ext_flash
    Debug: save_byte(204, 813) saved the value 204 to 813 in ext_flash
    Debug: save_byte(204, 814) saved the value 204 to 814 in ext_flash
    Debug: save_byte(204, 815) saved the value 204 to 815 in ext_flash
    Debug: save_byte(204, 816) saved the value 204 to 816 in ext_flash
    Debug: save_byte(204, 817) saved the value 204 to 817 in ext_flash
    Debug: save_byte(204, 818) saved the value 204 to 818 in ext_flash
    Debug: save_byte(204, 819) saved the value 204 to 819 in ext_flash
    Debug: save_byte(204, 820) saved the value 204 to 820 in ext_flash
    Debug: save_byte(204, 821) saved the value 204 to 821 in ext_flash
    Debug: save_byte(204, 822) saved the value 204 to 822 in ext_flash
    Debug: save_byte(204, 823) saved the value 204 to 823 in ext_flash
    Debug: save_byte(204, 824) saved the value 204 to 824 in ext_flash
    Debug: save_byte(204, 825) saved the value 204 to 825 in ext_flash
    Debug: save_byte(204, 826) saved the value 204 to 826 in ext_flash
    Debug: save_byte(204, 827) saved the value 204 to 827 in ext_flash
    Debug: save_byte(204, 828) saved the value 204 to 828 in ext_flash
    Debug: save_byte(204, 829) saved the value 204 to 829 in ext_flash
    Debug: save_byte(204, 830) saved the value 204 to 830 in ext_flash
    Debug: save_byte(204, 831) saved the value 204 to 831 in ext_flash
    Debug: save_byte(204, 832) saved the value 204 to 832 in ext_flash
    Debug: save_byte(204, 833) saved the value 204 to 833 in ext_flash
    Debug: save_byte(204, 834) saved the value 204 to 834 in ext_flash
    Debug: save_byte(204, 835) saved the value 204 to 835 in ext_flash
    Debug: save_byte(204, 836) saved the value 204 to 836 in ext_flash
    Debug: save_byte(204, 837) saved the value 204 to 837 in ext_flash
    Debug: save_byte(204, 838) saved the value 204 to 838 in ext_flash
    Debug: save_byte(204, 839) saved the value 204 to 839 in ext_flash
    Debug: save_byte(204, 840) saved the value 204 to 840 in ext_flash
    Debug: save_byte(204, 841) saved the value 204 to 841 in ext_flash
    Debug: save_byte(204, 842) saved the value 204 to 842 in ext_flash
    Debug: save_byte(204, 843) saved the value 204 to 843 in ext_flash
    Debug: save_byte(204, 844) saved the value 204 to 844 in ext_flash
    Debug: save_byte(204, 845) saved the value 204 to 845 in ext_flash
    Debug: save_byte(204, 846) saved the value 204 to 846 in ext_flash
    Debug: save_byte(204, 847) saved the value 204 to 847 in ext_flash
    Debug: save_byte(204, 848) saved the value 204 to 848 in ext_flash
    Debug: save_byte(204, 849) saved the value 204 to 849 in ext_flash
    Debug: save_byte(204, 850) saved the value 204 to 850 in ext_flash
    Debug: save_byte(204, 851) saved the value 204 to 851 in ext_flash
    Debug: save_byte(204, 852) saved the value 204 to 852 in ext_flash
    Debug: save_byte(204, 853) saved the value 204 to 853 in ext_flash
    Debug: save_byte(204, 854) saved the value 204 to 854 in ext_flash
    Debug: save_byte(204, 855) saved the value 204 to 855 in ext_flash
    Debug: save_byte(204, 856) saved the value 204 to 856 in ext_flash
    Debug: save_byte(204, 857) saved the value 204 to 857 in ext_flash
    Debug: save_byte(204, 858) saved the value 204 to 858 in ext_flash
    Debug: save_byte(204, 859) saved the value 204 to 859 in ext_flash
    Debug: save_byte(204, 860) saved the value 204 to 860 in ext_flash
    Debug: save_byte(204, 861) saved the value 204 to 861 in ext_flash
    Debug: save_byte(204, 862) saved the value 204 to 862 in ext_flash
    Debug: save_byte(204, 863) saved the value 204 to 863 in ext_flash
    Debug: save_byte(204, 864) saved the value 204 to 864 in ext_flash
    Debug: save_byte(204, 865) saved the value 204 to 865 in ext_flash
    Debug: save_byte(204, 866) saved the value 204 to 866 in ext_flash
    Debug: save_byte(204, 867) saved the value 204 to 867 in ext_flash
    Debug: save_byte(204, 868) saved the value 204 to 868 in ext_flash
    Debug: save_byte(204, 869) saved the value 204 to 869 in ext_flash
    Debug: save_byte(204, 870) saved the value 204 to 870 in ext_flash
    Debug: save_byte(204, 871) saved the value 204 to 871 in ext_flash
    Debug: save_byte(204, 872) saved the value 204 to 872 in ext_flash
    Debug: save_byte(204, 873) saved the value 204 to 873 in ext_flash
    Debug: save_byte(204, 874) saved the value 204 to 874 in ext_flash
    Debug: save_byte(204, 875) saved the value 204 to 875 in ext_flash
    Debug: save_byte(204, 876) saved the value 204 to 876 in ext_flash
    Debug: save_byte(204, 877) saved the value 204 to 877 in ext_flash
    Debug: save_byte(204, 878) saved the value 204 to 878 in ext_flash
    Debug: save_byte(204, 879) saved the value 204 to 879 in ext_flash
    Debug: save_byte(204, 880) saved the value 204 to 880 in ext_flash
    Debug: save_byte(204, 881) saved the value 204 to 881 in ext_flash
    Debug: save_byte(204, 882) saved the value 204 to 882 in ext_flash
    Debug: save_byte(204, 883) saved the value 204 to 883 in ext_flash
    Debug: save_byte(204, 884) saved the value 204 to 884 in ext_flash
    Debug: save_byte(204, 885) saved the value 204 to 885 in ext_flash
    Debug: save_byte(204, 886) saved the value 204 to 886 in ext_flash
    Debug: save_byte(204, 887) saved the value 204 to 887 in ext_flash
    Debug: save_byte(204, 888) saved the value 204 to 888 in ext_flash
    Debug: save_byte(204, 889) saved the value 204 to 889 in ext_flash
    Debug: save_byte(204, 890) saved the value 204 to 890 in ext_flash
    Debug: save_byte(204, 891) saved the value 204 to 891 in ext_flash
    Debug: save_byte(204, 892) saved the value 204 to 892 in ext_flash
    Debug: save_byte(204, 893) saved the value 204 to 893 in ext_flash
    Debug: save_byte(204, 894) saved the value 204 to 894 in ext_flash
    Debug: save_byte(204, 895) saved the value 204 to 895 in ext_flash
    Debug: save_byte(204, 896) saved the value 204 to 896 in ext_flash
    Debug: save_byte(204, 897) saved the value 204 to 897 in ext_flash
    Debug: save_byte(204, 898) saved the value 204 to 898 in ext_flash
    Debug: save_byte(204, 899) saved the value 204 to 899 in ext_flash
    Debug: save_byte(204, 900) saved the value 204 to 900 in ext_flash
    Debug: save_byte(204, 901) saved the value 204 to 901 in ext_flash
    Debug: save_byte(204, 902) saved the value 204 to 902 in ext_flash
    Debug: save_byte(204, 903) saved the value 204 to 903 in ext_flash
    Debug: save_byte(204, 904) saved the value 204 to 904 in ext_flash
    Debug: save_byte(204, 905) saved the value 204 to 905 in ext_flash
    Debug: save_byte(204, 906) saved the value 204 to 906 in ext_flash
    Debug: save_byte(204, 907) saved the value 204 to 907 in ext_flash
    Debug: save_byte(204, 908) saved the value 204 to 908 in ext_flash
    Debug: save_byte(204, 909) saved the value 204 to 909 in ext_flash
    Debug: save_byte(204, 910) saved the value 204 to 910 in ext_flash
    Debug: save_byte(204, 911) saved the value 204 to 911 in ext_flash
    Debug: save_byte(204, 912) saved the value 204 to 912 in ext_flash
    Debug: save_byte(204, 913) saved the value 204 to 913 in ext_flash
    Debug: save_byte(204, 914) saved the value 204 to 914 in ext_flash
    Debug: save_byte(204, 915) saved the value 204 to 915 in ext_flash
    Debug: save_byte(204, 916) saved the value 204 to 916 in ext_flash
    Debug: save_byte(204, 917) saved the value 204 to 917 in ext_flash
    Debug: save_byte(204, 918) saved the value 204 to 918 in ext_flash
    Debug: save_byte(204, 919) saved the value 204 to 919 in ext_flash
    Debug: save_byte(204, 920) saved the value 204 to 920 in ext_flash
    Debug: save_byte(204, 921) saved the value 204 to 921 in ext_flash
    Debug: save_byte(204, 922) saved the value 204 to 922 in ext_flash
    Debug: save_byte(204, 923) saved the value 204 to 923 in ext_flash
    Debug: save_byte(204, 924) saved the value 204 to 924 in ext_flash
    Debug: save_byte(204, 925) saved the value 204 to 925 in ext_flash
    Debug: save_byte(204, 926) saved the value 204 to 926 in ext_flash
    Debug: save_byte(204, 927) saved the value 204 to 927 in ext_flash
    Debug: save_byte(204, 928) saved the value 204 to 928 in ext_flash
    Debug: save_byte(204, 929) saved the value 204 to 929 in ext_flash
    Debug: save_byte(204, 930) saved the value 204 to 930 in ext_flash
    Debug: save_byte(204, 931) saved the value 204 to 931 in ext_flash
    Debug: save_byte(204, 932) saved the value 204 to 932 in ext_flash
    Debug: save_byte(204, 933) saved the value 204 to 933 in ext_flash
    Debug: save_byte(204, 934) saved the value 204 to 934 in ext_flash
    Debug: save_byte(204, 935) saved the value 204 to 935 in ext_flash
    Debug: save_byte(204, 936) saved the value 204 to 936 in ext_flash
    Debug: save_byte(204, 937) saved the value 204 to 937 in ext_flash
    Debug: save_byte(204, 938) saved the value 204 to 938 in ext_flash
    Debug: save_byte(204, 939) saved the value 204 to 939 in ext_flash
    Debug: save_byte(204, 940) saved the value 204 to 940 in ext_flash
    Debug: save_byte(204, 941) saved the value 204 to 941 in ext_flash
    Debug: save_byte(204, 942) saved the value 204 to 942 in ext_flash
    Debug: save_byte(204, 943) saved the value 204 to 943 in ext_flash
    Debug: save_byte(204, 944) saved the value 204 to 944 in ext_flash
    Debug: save_byte(204, 945) saved the value 204 to 945 in ext_flash
    Debug: save_byte(204, 946) saved the value 204 to 946 in ext_flash
    Debug: save_byte(204, 947) saved the value 204 to 947 in ext_flash
    Debug: save_byte(204, 948) saved the value 204 to 948 in ext_flash
    Debug: save_byte(204, 949) saved the value 204 to 949 in ext_flash
    Debug: save_byte(204, 950) saved the value 204 to 950 in ext_flash
    Debug: save_byte(204, 951) saved the value 204 to 951 in ext_flash
    Debug: save_byte(204, 952) saved the value 204 to 952 in ext_flash
    Debug: save_byte(204, 953) saved the value 204 to 953 in ext_flash
    Debug: save_byte(204, 954) saved the value 204 to 954 in ext_flash
    Debug: save_byte(204, 955) saved the value 204 to 955 in ext_flash
    Debug: save_byte(204, 956) saved the value 204 to 956 in ext_flash
    Debug: save_byte(204, 957) saved the value 204 to 957 in ext_flash
    Debug: save_byte(204, 958) saved the value 204 to 958 in ext_flash
    Debug: save_byte(204, 959) saved the value 204 to 959 in ext_flash
    Debug: save_byte(204, 960) saved the value 204 to 960 in ext_flash
    Debug: save_byte(204, 961) saved the value 204 to 961 in ext_flash
    Debug: save_byte(204, 962) saved the value 204 to 962 in ext_flash
    Debug: save_byte(204, 963) saved the value 204 to 963 in ext_flash
    Debug: save_byte(204, 964) saved the value 204 to 964 in ext_flash
    Debug: save_byte(204, 965) saved the value 204 to 965 in ext_flash
    Debug: save_byte(204, 966) saved the value 204 to 966 in ext_flash
    Debug: save_byte(204, 967) saved the value 204 to 967 in ext_flash
    Debug: save_byte(204, 968) saved the value 204 to 968 in ext_flash
    Debug: save_byte(204, 969) saved the value 204 to 969 in ext_flash
    Debug: save_byte(204, 970) saved the value 204 to 970 in ext_flash
    Debug: save_byte(204, 971) saved the value 204 to 971 in ext_flash
    Debug: save_byte(204, 972) saved the value 204 to 972 in ext_flash
    Debug: save_byte(204, 973) saved the value 204 to 973 in ext_flash
    Debug: save_byte(204, 974) saved the value 204 to 974 in ext_flash
    Debug: save_byte(204, 975) saved the value 204 to 975 in ext_flash
    Debug: save_byte(204, 976) saved the value 204 to 976 in ext_flash
    Debug: save_byte(204, 977) saved the value 204 to 977 in ext_flash
    Debug: save_byte(204, 978) saved the value 204 to 978 in ext_flash
    Debug: save_byte(204, 979) saved the value 204 to 979 in ext_flash
    Debug: save_byte(204, 980) saved the value 204 to 980 in ext_flash
    Debug: save_byte(204, 981) saved the value 204 to 981 in ext_flash
    Debug: save_byte(204, 982) saved the value 204 to 982 in ext_flash
    Debug: save_byte(204, 983) saved the value 204 to 983 in ext_flash
    Debug: save_byte(204, 984) saved the value 204 to 984 in ext_flash
    Debug: save_byte(204, 985) saved the value 204 to 985 in ext_flash
    Debug: save_byte(204, 986) saved the value 204 to 986 in ext_flash
    Debug: save_byte(204, 987) saved the value 204 to 987 in ext_flash
    Debug: save_byte(204, 988) saved the value 204 to 988 in ext_flash
    Debug: save_byte(204, 989) saved the value 204 to 989 in ext_flash
    Debug: save_byte(204, 990) saved the value 204 to 990 in ext_flash
    Debug: save_byte(204, 991) saved the value 204 to 991 in ext_flash
    Debug: save_byte(204, 992) saved the value 204 to 992 in ext_flash
    Debug: save_byte(204, 993) saved the value 204 to 993 in ext_flash
    Debug: save_byte(204, 994) saved the value 204 to 994 in ext_flash
    Debug: save_byte(204, 995) saved the value 204 to 995 in ext_flash
    Debug: save_byte(204, 996) saved the value 204 to 996 in ext_flash
    Debug: save_byte(204, 997) saved the value 204 to 997 in ext_flash
    Debug: save_byte(204, 998) saved the value 204 to 998 in ext_flash
    Debug: save_byte(204, 999) saved the value 204 to 999 in ext_flash
    Debug: save_byte(204, 1000) saved the value 204 to 1000 in ext_flash
    Debug: save_byte(204, 1001) saved the value 204 to 1001 in ext_flash
    Debug: save_byte(204, 1002) saved the value 204 to 1002 in ext_flash
    Debug: save_byte(204, 1003) saved the value 204 to 1003 in ext_flash
    Debug: save_byte(204, 1004) saved the value 204 to 1004 in ext_flash
    Debug: save_byte(204, 1005) saved the value 204 to 1005 in ext_flash
    Debug: save_byte(204, 1006) saved the value 204 to 1006 in ext_flash
    Debug: save_byte(204, 1007) saved the value 204 to 1007 in ext_flash
    Debug: save_byte(204, 1008) saved the value 204 to 1008 in ext_flash
    Debug: save_byte(204, 1009) saved the value 204 to 1009 in ext_flash
    Debug: save_byte(204, 1010) saved the value 204 to 1010 in ext_flash
    Debug: save_byte(204, 1011) saved the value 204 to 1011 in ext_flash
    Debug: save_byte(204, 1012) saved the value 204 to 1012 in ext_flash
    Debug: save_byte(204, 1013) saved the value 204 to 1013 in ext_flash
    Debug: save_byte(204, 1014) saved the value 204 to 1014 in ext_flash
    Debug: save_byte(204, 1015) saved the value 204 to 1015 in ext_flash
    Debug: save_byte(204, 1016) saved the value 204 to 1016 in ext_flash
    Debug: save_byte(204, 1017) saved the value 204 to 1017 in ext_flash
    Debug: save_byte(204, 1018) saved the value 204 to 1018 in ext_flash
    Debug: save_byte(204, 1019) saved the value 204 to 1019 in ext_flash
    Debug: save_byte(204, 1020) saved the value 204 to 1020 in ext_flash
    Debug: save_byte(204, 1021) saved the value 204 to 1021 in ext_flash
    Debug: save_byte(204, 1022) saved the value 204 to 1022 in ext_flash
    Debug: save_byte(204, 1023) saved the value 204 to 1023 in ext_flash
    Debug: save_byte(204, 1024) saved the value 204 to 1024 in ext_flash
    Debug: save_byte(204, 1025) saved the value 204 to 1025 in ext_flash
    Debug: save_byte(204, 1026) saved the value 204 to 1026 in ext_flash
    Debug: save_byte(204, 1027) saved the value 204 to 1027 in ext_flash
    Debug: save_byte(204, 1028) saved the value 204 to 1028 in ext_flash
    Debug: save_byte(204, 1029) saved the value 204 to 1029 in ext_flash
    Debug: save_byte(204, 1030) saved the value 204 to 1030 in ext_flash
    Debug: save_byte(204, 1031) saved the value 204 to 1031 in ext_flash
    Debug: save_byte(204, 1032) saved the value 204 to 1032 in ext_flash
    Debug: save_byte(204, 1033) saved the value 204 to 1033 in ext_flash
    Debug: save_byte(204, 1034) saved the value 204 to 1034 in ext_flash
    Debug: save_byte(204, 1035) saved the value 204 to 1035 in ext_flash
    Debug: save_byte(204, 1036) saved the value 204 to 1036 in ext_flash
    Debug: save_byte(204, 1037) saved the value 204 to 1037 in ext_flash
    Debug: save_byte(204, 1038) saved the value 204 to 1038 in ext_flash
    Debug: save_byte(204, 1039) saved the value 204 to 1039 in ext_flash
    Debug: save_byte(204, 1040) saved the value 204 to 1040 in ext_flash
    Debug: save_byte(204, 1041) saved the value 204 to 1041 in ext_flash
    Debug: save_byte(204, 1042) saved the value 204 to 1042 in ext_flash
    Debug: save_byte(204, 1043) saved the value 204 to 1043 in ext_flash
    Debug: save_byte(204, 1044) saved the value 204 to 1044 in ext_flash
    Debug: save_byte(204, 1045) saved the value 204 to 1045 in ext_flash
    Debug: save_byte(204, 1046) saved the value 204 to 1046 in ext_flash
    Debug: save_byte(204, 1047) saved the value 204 to 1047 in ext_flash
    Debug: save_byte(204, 1048) saved the value 204 to 1048 in ext_flash
    Debug: save_byte(204, 1049) saved the value 204 to 1049 in ext_flash
    Debug: save_byte(204, 1050) saved the value 204 to 1050 in ext_flash
    Debug: save_byte(204, 1051) saved the value 204 to 1051 in ext_flash
    Debug: save_byte(204, 1052) saved the value 204 to 1052 in ext_flash
    Debug: save_byte(204, 1053) saved the value 204 to 1053 in ext_flash
    Debug: save_byte(204, 1054) saved the value 204 to 1054 in ext_flash
    Debug: save_byte(204, 1055) saved the value 204 to 1055 in ext_flash
    Debug: save_byte(204, 1056) saved the value 204 to 1056 in ext_flash
    Debug: save_byte(204, 1057) saved the value 204 to 1057 in ext_flash
    Debug: save_byte(204, 1058) saved the value 204 to 1058 in ext_flash
    Debug: save_byte(204, 1059) saved the value 204 to 1059 in ext_flash
    Debug: save_byte(204, 1060) saved the value 204 to 1060 in ext_flash
    Debug: save_byte(204, 1061) saved the value 204 to 1061 in ext_flash
    Debug: save_byte(204, 1062) saved the value 204 to 1062 in ext_flash
    Debug: save_byte(204, 1063) saved the value 204 to 1063 in ext_flash
    Debug: save_byte(204, 1064) saved the value 204 to 1064 in ext_flash
    Debug: save_byte(204, 1065) saved the value 204 to 1065 in ext_flash
    Debug: save_byte(204, 1066) saved the value 204 to 1066 in ext_flash
    Debug: save_byte(204, 1067) saved the value 204 to 1067 in ext_flash
    Debug: save_byte(204, 1068) saved the value 204 to 1068 in ext_flash
    Debug: save_byte(204, 1069) saved the value 204 to 1069 in ext_flash
    Debug: save_byte(204, 1070) saved the value 204 to 1070 in ext_flash
    Debug: save_byte(204, 1071) saved the value 204 to 1071 in ext_flash
    Debug: save_byte(204, 1072) saved the value 204 to 1072 in ext_flash
    Debug: save_byte(204, 1073) saved the value 204 to 1073 in ext_flash
    Debug: save_byte(204, 1074) saved the value 204 to 1074 in ext_flash
    Debug: save_byte(204, 1075) saved the value 204 to 1075 in ext_flash
    Debug: save_byte(204, 1076) saved the value 204 to 1076 in ext_flash
    Debug: save_byte(204, 1077) saved the value 204 to 1077 in ext_flash
    Debug: save_byte(204, 1078) saved the value 204 to 1078 in ext_flash
    Debug: save_byte(204, 1079) saved the value 204 to 1079 in ext_flash
    Debug: save_byte(204, 1080) saved the value 204 to 1080 in ext_flash
    Debug: save_byte(204, 1081) saved the value 204 to 1081 in ext_flash
    Debug: save_byte(204, 1082) saved the value 204 to 1082 in ext_flash
    Debug: save_byte(204, 1083) saved the value 204 to 1083 in ext_flash
    Debug: save_byte(204, 1084) saved the value 204 to 1084 in ext_flash
    Debug: save_byte(204, 1085) saved the value 204 to 1085 in ext_flash
    Debug: save_byte(204, 1086) saved the value 204 to 1086 in ext_flash
    Debug: save_byte(204, 1087) saved the value 204 to 1087 in ext_flash
    Debug: save_byte(204, 1088) saved the value 204 to 1088 in ext_flash
    Debug: save_byte(204, 1089) saved the value 204 to 1089 in ext_flash
    Debug: save_byte(204, 1090) saved the value 204 to 1090 in ext_flash
    Debug: save_byte(204, 1091) saved the value 204 to 1091 in ext_flash
    Debug: save_byte(204, 1092) saved the value 204 to 1092 in ext_flash
    Debug: save_byte(204, 1093) saved the value 204 to 1093 in ext_flash
    Debug: save_byte(204, 1094) saved the value 204 to 1094 in ext_flash
    Debug: save_byte(204, 1095) saved the value 204 to 1095 in ext_flash
    Debug: save_byte(204, 1096) saved the value 204 to 1096 in ext_flash
    Debug: save_byte(204, 1097) saved the value 204 to 1097 in ext_flash
    Debug: save_byte(204, 1098) saved the value 204 to 1098 in ext_flash
    Debug: save_byte(204, 1099) saved the value 204 to 1099 in ext_flash
    Debug: save_byte(204, 1100) saved the value 204 to 1100 in ext_flash
    Debug: save_byte(204, 1101) saved the value 204 to 1101 in ext_flash
    Debug: save_byte(204, 1102) saved the value 204 to 1102 in ext_flash
    Debug: save_byte(204, 1103) saved the value 204 to 1103 in ext_flash
    Debug: save_byte(204, 1104) saved the value 204 to 1104 in ext_flash
    Debug: save_byte(204, 1105) saved the value 204 to 1105 in ext_flash
    Debug: save_byte(204, 1106) saved the value 204 to 1106 in ext_flash
    Debug: save_byte(204, 1107) saved the value 204 to 1107 in ext_flash
    Debug: save_byte(204, 1108) saved the value 204 to 1108 in ext_flash
    Debug: save_byte(204, 1109) saved the value 204 to 1109 in ext_flash
    Debug: save_byte(204, 1110) saved the value 204 to 1110 in ext_flash
    Debug: save_byte(204, 1111) saved the value 204 to 1111 in ext_flash
    Debug: save_byte(204, 1112) saved the value 204 to 1112 in ext_flash
    Debug: save_byte(204, 1113) saved the value 204 to 1113 in ext_flash
    Debug: save_byte(204, 1114) saved the value 204 to 1114 in ext_flash
    Debug: save_byte(204, 1115) saved the value 204 to 1115 in ext_flash
    Debug: save_byte(204, 1116) saved the value 204 to 1116 in ext_flash
    Debug: save_byte(204, 1117) saved the value 204 to 1117 in ext_flash
    Debug: save_byte(204, 1118) saved the value 204 to 1118 in ext_flash
    Debug: save_byte(204, 1119) saved the value 204 to 1119 in ext_flash
    Debug: save_byte(204, 1120) saved the value 204 to 1120 in ext_flash
    Debug: save_byte(204, 1121) saved the value 204 to 1121 in ext_flash
    Debug: save_byte(204, 1122) saved the value 204 to 1122 in ext_flash
    Debug: save_byte(204, 1123) saved the value 204 to 1123 in ext_flash
    Debug: save_byte(204, 1124) saved the value 204 to 1124 in ext_flash
    Debug: save_byte(204, 1125) saved the value 204 to 1125 in ext_flash
    Debug: save_byte(204, 1126) saved the value 204 to 1126 in ext_flash
    Debug: save_byte(204, 1127) saved the value 204 to 1127 in ext_flash
    Debug: save_byte(204, 1128) saved the value 204 to 1128 in ext_flash
    Debug: save_byte(204, 1129) saved the value 204 to 1129 in ext_flash
    Debug: save_byte(204, 1130) saved the value 204 to 1130 in ext_flash
    Debug: save_byte(204, 1131) saved the value 204 to 1131 in ext_flash
    Debug: save_byte(204, 1132) saved the value 204 to 1132 in ext_flash
    Debug: save_byte(204, 1133) saved the value 204 to 1133 in ext_flash
    Debug: save_byte(204, 1134) saved the value 204 to 1134 in ext_flash
    Debug: save_byte(204, 1135) saved the value 204 to 1135 in ext_flash
    Debug: save_byte(204, 1136) saved the value 204 to 1136 in ext_flash
    Debug: save_byte(204, 1137) saved the value 204 to 1137 in ext_flash
    Debug: save_byte(204, 1138) saved the value 204 to 1138 in ext_flash
    Debug: save_byte(204, 1139) saved the value 204 to 1139 in ext_flash
    Debug: save_byte(204, 1140) saved the value 204 to 1140 in ext_flash
    Debug: save_byte(204, 1141) saved the value 204 to 1141 in ext_flash
    Debug: save_byte(204, 1142) saved the value 204 to 1142 in ext_flash
    Debug: save_byte(204, 1143) saved the value 204 to 1143 in ext_flash
    Debug: save_byte(204, 1144) saved the value 204 to 1144 in ext_flash
    Debug: save_byte(204, 1145) saved the value 204 to 1145 in ext_flash
    Debug: save_byte(204, 1146) saved the value 204 to 1146 in ext_flash
    Debug: save_byte(204, 1147) saved the value 204 to 1147 in ext_flash
    Debug: save_byte(204, 1148) saved the value 204 to 1148 in ext_flash
    Debug: save_byte(204, 1149) saved the value 204 to 1149 in ext_flash
    Debug: save_byte(204, 1150) saved the value 204 to 1150 in ext_flash
    Debug: save_byte(204, 1151) saved the value 204 to 1151 in ext_flash
    Debug: save_byte(204, 1152) saved the value 204 to 1152 in ext_flash
    Debug: save_byte(204, 1153) saved the value 204 to 1153 in ext_flash
    Debug: save_byte(204, 1154) saved the value 204 to 1154 in ext_flash
    Debug: save_byte(204, 1155) saved the value 204 to 1155 in ext_flash
    Debug: save_byte(204, 1156) saved the value 204 to 1156 in ext_flash
    Debug: save_byte(204, 1157) saved the value 204 to 1157 in ext_flash
    Debug: save_byte(204, 1158) saved the value 204 to 1158 in ext_flash
    Debug: save_byte(204, 1159) saved the value 204 to 1159 in ext_flash
    Debug: save_byte(204, 1160) saved the value 204 to 1160 in ext_flash
    Debug: save_byte(204, 1161) saved the value 204 to 1161 in ext_flash
    Debug: save_byte(204, 1162) saved the value 204 to 1162 in ext_flash
    Debug: save_byte(204, 1163) saved the value 204 to 1163 in ext_flash
    Debug: save_byte(204, 1164) saved the value 204 to 1164 in ext_flash
    Debug: save_byte(204, 1165) saved the value 204 to 1165 in ext_flash
    Debug: save_byte(204, 1166) saved the value 204 to 1166 in ext_flash
    Debug: save_byte(204, 1167) saved the value 204 to 1167 in ext_flash
    Debug: save_byte(204, 1168) saved the value 204 to 1168 in ext_flash
    Debug: save_byte(204, 1169) saved the value 204 to 1169 in ext_flash
    Debug: save_byte(204, 1170) saved the value 204 to 1170 in ext_flash
    Debug: save_byte(204, 1171) saved the value 204 to 1171 in ext_flash
    Debug: save_byte(204, 1172) saved the value 204 to 1172 in ext_flash
    Debug: save_byte(204, 1173) saved the value 204 to 1173 in ext_flash
    Debug: save_byte(204, 1174) saved the value 204 to 1174 in ext_flash
    Debug: save_byte(204, 1175) saved the value 204 to 1175 in ext_flash
    Debug: save_byte(204, 1176) saved the value 204 to 1176 in ext_flash
    Debug: save_byte(204, 1177) saved the value 204 to 1177 in ext_flash
    Debug: save_byte(204, 1178) saved the value 204 to 1178 in ext_flash
    Debug: save_byte(204, 1179) saved the value 204 to 1179 in ext_flash
    Debug: save_byte(204, 1180) saved the value 204 to 1180 in ext_flash
    Debug: save_byte(204, 1181) saved the value 204 to 1181 in ext_flash
    Debug: save_byte(204, 1182) saved the value 204 to 1182 in ext_flash
    Debug: save_byte(204, 1183) saved the value 204 to 1183 in ext_flash
    Debug: save_byte(204, 1184) saved the value 204 to 1184 in ext_flash
    Debug: save_byte(204, 1185) saved the value 204 to 1185 in ext_flash
    Debug: save_byte(204, 1186) saved the value 204 to 1186 in ext_flash
    Debug: save_byte(204, 1187) saved the value 204 to 1187 in ext_flash
    Debug: save_byte(204, 1188) saved the value 204 to 1188 in ext_flash
    Debug: save_byte(204, 1189) saved the value 204 to 1189 in ext_flash
    Debug: save_byte(204, 1190) saved the value 204 to 1190 in ext_flash
    Debug: save_byte(204, 1191) saved the value 204 to 1191 in ext_flash
    Debug: save_byte(204, 1192) saved the value 204 to 1192 in ext_flash
    Debug: save_byte(204, 1193) saved the value 204 to 1193 in ext_flash
    Debug: save_byte(204, 1194) saved the value 204 to 1194 in ext_flash
    Debug: save_byte(204, 1195) saved the value 204 to 1195 in ext_flash
    Debug: save_byte(204, 1196) saved the value 204 to 1196 in ext_flash
    Debug: save_byte(204, 1197) saved the value 204 to 1197 in ext_flash
    Debug: save_byte(204, 1198) saved the value 204 to 1198 in ext_flash
    Debug: save_byte(204, 1199) saved the value 204 to 1199 in ext_flash
    Debug: save_byte(204, 1200) saved the value 204 to 1200 in ext_flash
    Debug: save_byte(204, 1201) saved the value 204 to 1201 in ext_flash
    Debug: save_byte(204, 1202) saved the value 204 to 1202 in ext_flash
    Debug: save_byte(204, 1203) saved the value 204 to 1203 in ext_flash
    Debug: save_byte(204, 1204) saved the value 204 to 1204 in ext_flash
    Debug: save_byte(204, 1205) saved the value 204 to 1205 in ext_flash
    Debug: save_byte(204, 1206) saved the value 204 to 1206 in ext_flash
    Debug: save_byte(204, 1207) saved the value 204 to 1207 in ext_flash
    Debug: save_byte(204, 1208) saved the value 204 to 1208 in ext_flash
    Debug: save_byte(204, 1209) saved the value 204 to 1209 in ext_flash
    Debug: save_byte(204, 1210) saved the value 204 to 1210 in ext_flash
    Debug: save_byte(204, 1211) saved the value 204 to 1211 in ext_flash
    Debug: save_byte(204, 1212) saved the value 204 to 1212 in ext_flash
    Debug: save_byte(204, 1213) saved the value 204 to 1213 in ext_flash
    Debug: save_byte(204, 1214) saved the value 204 to 1214 in ext_flash
    Debug: save_byte(204, 1215) saved the value 204 to 1215 in ext_flash
    Debug: save_byte(204, 1216) saved the value 204 to 1216 in ext_flash
    Debug: save_byte(204, 1217) saved the value 204 to 1217 in ext_flash
    Debug: save_byte(204, 1218) saved the value 204 to 1218 in ext_flash
    Debug: save_byte(204, 1219) saved the value 204 to 1219 in ext_flash
    Debug: save_byte(204, 1220) saved the value 204 to 1220 in ext_flash
    Debug: save_byte(204, 1221) saved the value 204 to 1221 in ext_flash
    Debug: save_byte(204, 1222) saved the value 204 to 1222 in ext_flash
    Debug: save_byte(204, 1223) saved the value 204 to 1223 in ext_flash
    Debug: save_byte(204, 1224) saved the value 204 to 1224 in ext_flash
    Debug: save_byte(204, 1225) saved the value 204 to 1225 in ext_flash
    Debug: save_byte(204, 1226) saved the value 204 to 1226 in ext_flash
    Debug: save_byte(204, 1227) saved the value 204 to 1227 in ext_flash
    Debug: save_byte(204, 1228) saved the value 204 to 1228 in ext_flash
    Debug: save_byte(204, 1229) saved the value 204 to 1229 in ext_flash
    Debug: save_byte(204, 1230) saved the value 204 to 1230 in ext_flash
    Debug: save_byte(204, 1231) saved the value 204 to 1231 in ext_flash
    Debug: save_byte(204, 1232) saved the value 204 to 1232 in ext_flash
    Debug: save_byte(204, 1233) saved the value 204 to 1233 in ext_flash
    Debug: save_byte(204, 1234) saved the value 204 to 1234 in ext_flash
    Debug: save_byte(204, 1235) saved the value 204 to 1235 in ext_flash
    Debug: save_byte(204, 1236) saved the value 204 to 1236 in ext_flash
    Debug: save_byte(204, 1237) saved the value 204 to 1237 in ext_flash
    Debug: save_byte(204, 1238) saved the value 204 to 1238 in ext_flash
    Debug: save_byte(204, 1239) saved the value 204 to 1239 in ext_flash
    Debug: save_byte(204, 1240) saved the value 204 to 1240 in ext_flash
    Debug: save_byte(204, 1241) saved the value 204 to 1241 in ext_flash
    Debug: save_byte(204, 1242) saved the value 204 to 1242 in ext_flash
    Debug: save_byte(204, 1243) saved the value 204 to 1243 in ext_flash
    Debug: save_byte(204, 1244) saved the value 204 to 1244 in ext_flash
    Debug: save_byte(204, 1245) saved the value 204 to 1245 in ext_flash
    Debug: save_byte(204, 1246) saved the value 204 to 1246 in ext_flash
    Debug: save_byte(204, 1247) saved the value 204 to 1247 in ext_flash
    Debug: save_byte(204, 1248) saved the value 204 to 1248 in ext_flash
    Debug: save_byte(204, 1249) saved the value 204 to 1249 in ext_flash
    Debug: save_byte(204, 1250) saved the value 204 to 1250 in ext_flash
    Debug: save_byte(204, 1251) saved the value 204 to 1251 in ext_flash
    Debug: save_byte(204, 1252) saved the value 204 to 1252 in ext_flash
    Debug: save_byte(204, 1253) saved the value 204 to 1253 in ext_flash
    Debug: save_byte(204, 1254) saved the value 204 to 1254 in ext_flash
    Debug: save_byte(204, 1255) saved the value 204 to 1255 in ext_flash
    Debug: save_byte(204, 1256) saved the value 204 to 1256 in ext_flash
    Debug: save_byte(204, 1257) saved the value 204 to 1257 in ext_flash
    Debug: save_byte(204, 1258) saved the value 204 to 1258 in ext_flash
    Debug: save_byte(204, 1259) saved the value 204 to 1259 in ext_flash
    Debug: save_byte(204, 1260) saved the value 204 to 1260 in ext_flash
    Debug: save_byte(204, 1261) saved the value 204 to 1261 in ext_flash
    Debug: save_byte(204, 1262) saved the value 204 to 1262 in ext_flash
    Debug: save_byte(204, 1263) saved the value 204 to 1263 in ext_flash
    Debug: save_byte(204, 1264) saved the value 204 to 1264 in ext_flash
    Debug: save_byte(204, 1265) saved the value 204 to 1265 in ext_flash
    Debug: save_byte(204, 1266) saved the value 204 to 1266 in ext_flash
    Debug: save_byte(204, 1267) saved the value 204 to 1267 in ext_flash
    Debug: save_byte(204, 1268) saved the value 204 to 1268 in ext_flash
    Debug: save_byte(204, 1269) saved the value 204 to 1269 in ext_flash
    Debug: save_byte(204, 1270) saved the value 204 to 1270 in ext_flash
    Debug: save_byte(204, 1271) saved the value 204 to 1271 in ext_flash
    Debug: save_byte(204, 1272) saved the value 204 to 1272 in ext_flash
    Debug: save_byte(204, 1273) saved the value 204 to 1273 in ext_flash
    Debug: save_byte(204, 1274) saved the value 204 to 1274 in ext_flash
    Debug: save_byte(204, 1275) saved the value 204 to 1275 in ext_flash
    Debug: save_byte(204, 1276) saved the value 204 to 1276 in ext_flash
    Debug: save_byte(204, 1277) saved the value 204 to 1277 in ext_flash
    Debug: save_byte(204, 1278) saved the value 204 to 1278 in ext_flash
    Debug: save_byte(204, 1279) saved the value 204 to 1279 in ext_flash
    Debug: save_byte(204, 1280) saved the value 204 to 1280 in ext_flash
    Debug: save_byte(204, 1281) saved the value 204 to 1281 in ext_flash
    Debug: save_byte(204, 1282) saved the value 204 to 1282 in ext_flash
    Debug: save_byte(204, 1283) saved the value 204 to 1283 in ext_flash
    Debug: save_byte(204, 1284) saved the value 204 to 1284 in ext_flash
    Debug: save_byte(204, 1285) saved the value 204 to 1285 in ext_flash
    Debug: save_byte(204, 1286) saved the value 204 to 1286 in ext_flash
    Debug: save_byte(204, 1287) saved the value 204 to 1287 in ext_flash
    Debug: save_byte(204, 1288) saved the value 204 to 1288 in ext_flash
    Debug: save_byte(204, 1289) saved the value 204 to 1289 in ext_flash
    Debug: save_byte(204, 1290) saved the value 204 to 1290 in ext_flash
    Debug: save_byte(204, 1291) saved the value 204 to 1291 in ext_flash
    Debug: save_byte(204, 1292) saved the value 204 to 1292 in ext_flash
    Debug: save_byte(204, 1293) saved the value 204 to 1293 in ext_flash
    Debug: save_byte(204, 1294) saved the value 204 to 1294 in ext_flash
    Debug: save_byte(204, 1295) saved the value 204 to 1295 in ext_flash
    Debug: save_byte(204, 1296) saved the value 204 to 1296 in ext_flash
    Debug: save_byte(204, 1297) saved the value 204 to 1297 in ext_flash
    Debug: save_byte(204, 1298) saved the value 204 to 1298 in ext_flash
    Debug: save_byte(204, 1299) saved the value 204 to 1299 in ext_flash


    Debug: load_byte(*rv, 0) loaded the value 0 from 0 in ext_flash
    Debug: load_byte(*rv, 1) loaded the value 0 from 1 in ext_flash
    Debug: load_byte(*rv, 2) loaded the value 68 from 2 in ext_flash
    Debug: load_byte(*rv, 3) loaded the value 0 from 3 in ext_flash
    Debug: load_byte(*rv, 4) loaded the value 0 from 4 in ext_flash
    Debug: load_byte(*rv, 5) loaded the value 0 from 5 in ext_flash
    Debug: load_byte(*rv, 6) loaded the value 64 from 6 in ext_flash
    Debug: load_byte(*rv, 7) loaded the value 0 from 7 in ext_flash
    Debug: load_byte(*rv, 8) loaded the value 0 from 8 in ext_flash
    Debug: load_byte(*rv, 9) loaded the value 0 from 9 in ext_flash
    Debug: load_byte(*rv, 10) loaded the value 0 from 10 in ext_flash
    Debug: load_byte(*rv, 11) loaded the value 0 from 11 in ext_flash
    Debug: load_byte(*rv, 12) loaded the value 0 from 12 in ext_flash
    Debug: load_byte(*rv, 13) loaded the value 0 from 13 in ext_flash
    Debug: load_byte(*rv, 14) loaded the value 64 from 14 in ext_flash
    Debug: load_byte(*rv, 15) loaded the value 0 from 15 in ext_flash
    Debug: load_byte(*rv, 16) loaded the value 0 from 16 in ext_flash
    Debug: load_byte(*rv, 17) loaded the value 0 from 17 in ext_flash
    Debug: load_byte(*rv, 18) loaded the value 64 from 18 in ext_flash
    Debug: load_byte(*rv, 19) loaded the value 0 from 19 in ext_flash
    Debug: load_byte(*rv, 20) loaded the value 0 from 20 in ext_flash
    Debug: load_byte(*rv, 21) loaded the value 0 from 21 in ext_flash
    Debug: load_byte(*rv, 22) loaded the value 0 from 22 in ext_flash
    Debug: load_byte(*rv, 23) loaded the value 0 from 23 in ext_flash
    Debug: load_byte(*rv, 24) loaded the value 0 from 24 in ext_flash
    Debug: load_byte(*rv, 25) loaded the value 0 from 25 in ext_flash
    Debug: load_byte(*rv, 26) loaded the value 8 from 26 in ext_flash
    Debug: load_byte(*rv, 27) loaded the value 0 from 27 in ext_flash
    Debug: load_byte(*rv, 28) loaded the value 0 from 28 in ext_flash
    Debug: load_byte(*rv, 29) loaded the value 0 from 29 in ext_flash
    Debug: load_byte(*rv, 30) loaded the value 0 from 30 in ext_flash
    Debug: load_byte(*rv, 31) loaded the value 0 from 31 in ext_flash
    Debug: load_byte(*rv, 32) loaded the value 0 from 32 in ext_flash
    Debug: load_byte(*rv, 33) loaded the value 0 from 33 in ext_flash
    Debug: load_byte(*rv, 34) loaded the value 0 from 34 in ext_flash
    Debug: load_byte(*rv, 35) loaded the value 0 from 35 in ext_flash
    Debug: load_byte(*rv, 36) loaded the value 0 from 36 in ext_flash
    Debug: load_byte(*rv, 37) loaded the value 204 from 37 in ext_flash
    Debug: load_byte(*rv, 38) loaded the value 204 from 38 in ext_flash
    Debug: load_byte(*rv, 39) loaded the value 204 from 39 in ext_flash
    Debug: load_byte(*rv, 40) loaded the value 204 from 40 in ext_flash
    Debug: load_byte(*rv, 41) loaded the value 204 from 41 in ext_flash
    Debug: load_byte(*rv, 42) loaded the value 204 from 42 in ext_flash
    Debug: load_byte(*rv, 43) loaded the value 204 from 43 in ext_flash
    Debug: load_byte(*rv, 44) loaded the value 204 from 44 in ext_flash
    Debug: load_byte(*rv, 45) loaded the value 204 from 45 in ext_flash
    Debug: load_byte(*rv, 46) loaded the value 204 from 46 in ext_flash
    Debug: load_byte(*rv, 47) loaded the value 204 from 47 in ext_flash
    Debug: load_byte(*rv, 48) loaded the value 204 from 48 in ext_flash
    Debug: load_byte(*rv, 49) loaded the value 204 from 49 in ext_flash
    Debug: load_byte(*rv, 50) loaded the value 204 from 50 in ext_flash
    Debug: load_byte(*rv, 51) loaded the value 204 from 51 in ext_flash
    Debug: load_byte(*rv, 52) loaded the value 204 from 52 in ext_flash
    Debug: load_byte(*rv, 53) loaded the value 204 from 53 in ext_flash
    Debug: load_byte(*rv, 54) loaded the value 204 from 54 in ext_flash
    Debug: load_byte(*rv, 55) loaded the value 204 from 55 in ext_flash
    Debug: load_byte(*rv, 56) loaded the value 204 from 56 in ext_flash
    Debug: load_byte(*rv, 57) loaded the value 204 from 57 in ext_flash
    Debug: load_byte(*rv, 58) loaded the value 204 from 58 in ext_flash
    Debug: load_byte(*rv, 59) loaded the value 204 from 59 in ext_flash
    Debug: load_byte(*rv, 60) loaded the value 204 from 60 in ext_flash
    Debug: load_byte(*rv, 61) loaded the value 204 from 61 in ext_flash
    Debug: load_byte(*rv, 62) loaded the value 204 from 62 in ext_flash
    Debug: load_byte(*rv, 63) loaded the value 204 from 63 in ext_flash
    Debug: load_byte(*rv, 64) loaded the value 204 from 64 in ext_flash
    Debug: load_byte(*rv, 65) loaded the value 204 from 65 in ext_flash
    Debug: load_byte(*rv, 66) loaded the value 204 from 66 in ext_flash
    Debug: load_byte(*rv, 67) loaded the value 204 from 67 in ext_flash
    Debug: load_byte(*rv, 68) loaded the value 204 from 68 in ext_flash
    Debug: load_byte(*rv, 69) loaded the value 204 from 69 in ext_flash
    Debug: load_byte(*rv, 70) loaded the value 204 from 70 in ext_flash
    Debug: load_byte(*rv, 71) loaded the value 204 from 71 in ext_flash
    Debug: load_byte(*rv, 72) loaded the value 204 from 72 in ext_flash
    Debug: load_byte(*rv, 73) loaded the value 204 from 73 in ext_flash
    Debug: load_byte(*rv, 74) loaded the value 204 from 74 in ext_flash
    Debug: load_byte(*rv, 75) loaded the value 204 from 75 in ext_flash
    Debug: load_byte(*rv, 76) loaded the value 204 from 76 in ext_flash
    Debug: load_byte(*rv, 77) loaded the value 204 from 77 in ext_flash
    Debug: load_byte(*rv, 78) loaded the value 204 from 78 in ext_flash
    Debug: load_byte(*rv, 79) loaded the value 204 from 79 in ext_flash
    Debug: load_byte(*rv, 80) loaded the value 204 from 80 in ext_flash
    Debug: load_byte(*rv, 81) loaded the value 204 from 81 in ext_flash
    Debug: load_byte(*rv, 82) loaded the value 204 from 82 in ext_flash
    Debug: load_byte(*rv, 83) loaded the value 204 from 83 in ext_flash
    Debug: load_byte(*rv, 84) loaded the value 204 from 84 in ext_flash
    Debug: load_byte(*rv, 85) loaded the value 204 from 85 in ext_flash
    Debug: load_byte(*rv, 86) loaded the value 204 from 86 in ext_flash
    Debug: load_byte(*rv, 87) loaded the value 204 from 87 in ext_flash
    Debug: load_byte(*rv, 88) loaded the value 204 from 88 in ext_flash
    Debug: load_byte(*rv, 89) loaded the value 204 from 89 in ext_flash
    Debug: load_byte(*rv, 90) loaded the value 204 from 90 in ext_flash
    Debug: load_byte(*rv, 91) loaded the value 204 from 91 in ext_flash
    Debug: load_byte(*rv, 92) loaded the value 204 from 92 in ext_flash
    Debug: load_byte(*rv, 93) loaded the value 204 from 93 in ext_flash
    Debug: load_byte(*rv, 94) loaded the value 204 from 94 in ext_flash
    Debug: load_byte(*rv, 95) loaded the value 204 from 95 in ext_flash
    Debug: load_byte(*rv, 96) loaded the value 204 from 96 in ext_flash
    Debug: load_byte(*rv, 97) loaded the value 204 from 97 in ext_flash
    Debug: load_byte(*rv, 98) loaded the value 204 from 98 in ext_flash
    Debug: load_byte(*rv, 99) loaded the value 204 from 99 in ext_flash
    Debug: load_byte(*rv, 100) loaded the value 204 from 100 in ext_flash
    Debug: load_byte(*rv, 101) loaded the value 204 from 101 in ext_flash
    Debug: load_byte(*rv, 102) loaded the value 204 from 102 in ext_flash
    Debug: load_byte(*rv, 103) loaded the value 204 from 103 in ext_flash
    Debug: load_byte(*rv, 104) loaded the value 204 from 104 in ext_flash
    Debug: load_byte(*rv, 105) loaded the value 204 from 105 in ext_flash
    Debug: load_byte(*rv, 106) loaded the value 204 from 106 in ext_flash
    Debug: load_byte(*rv, 107) loaded the value 204 from 107 in ext_flash
    Debug: load_byte(*rv, 108) loaded the value 204 from 108 in ext_flash
    Debug: load_byte(*rv, 109) loaded the value 204 from 109 in ext_flash
    Debug: load_byte(*rv, 110) loaded the value 204 from 110 in ext_flash
    Debug: load_byte(*rv, 111) loaded the value 204 from 111 in ext_flash
    Debug: load_byte(*rv, 112) loaded the value 204 from 112 in ext_flash
    Debug: load_byte(*rv, 113) loaded the value 204 from 113 in ext_flash
    Debug: load_byte(*rv, 114) loaded the value 204 from 114 in ext_flash
    Debug: load_byte(*rv, 115) loaded the value 204 from 115 in ext_flash
    Debug: load_byte(*rv, 116) loaded the value 204 from 116 in ext_flash
    Debug: load_byte(*rv, 117) loaded the value 204 from 117 in ext_flash
    Debug: load_byte(*rv, 118) loaded the value 204 from 118 in ext_flash
    Debug: load_byte(*rv, 119) loaded the value 204 from 119 in ext_flash
    Debug: load_byte(*rv, 120) loaded the value 204 from 120 in ext_flash
    Debug: load_byte(*rv, 121) loaded the value 204 from 121 in ext_flash
    Debug: load_byte(*rv, 122) loaded the value 204 from 122 in ext_flash
    Debug: load_byte(*rv, 123) loaded the value 204 from 123 in ext_flash
    Debug: load_byte(*rv, 124) loaded the value 204 from 124 in ext_flash
    Debug: load_byte(*rv, 125) loaded the value 204 from 125 in ext_flash
    Debug: load_byte(*rv, 126) loaded the value 204 from 126 in ext_flash
    Debug: load_byte(*rv, 127) loaded the value 204 from 127 in ext_flash
    Debug: load_byte(*rv, 128) loaded the value 204 from 128 in ext_flash
    Debug: load_byte(*rv, 129) loaded the value 204 from 129 in ext_flash
    Debug: load_byte(*rv, 130) loaded the value 204 from 130 in ext_flash
    Debug: load_byte(*rv, 131) loaded the value 204 from 131 in ext_flash
    Debug: load_byte(*rv, 132) loaded the value 204 from 132 in ext_flash
    Debug: load_byte(*rv, 133) loaded the value 204 from 133 in ext_flash
    Debug: load_byte(*rv, 134) loaded the value 204 from 134 in ext_flash
    Debug: load_byte(*rv, 135) loaded the value 204 from 135 in ext_flash
    Debug: load_byte(*rv, 136) loaded the value 204 from 136 in ext_flash
    Debug: load_byte(*rv, 137) loaded the value 204 from 137 in ext_flash
    Debug: load_byte(*rv, 138) loaded the value 204 from 138 in ext_flash
    Debug: load_byte(*rv, 139) loaded the value 204 from 139 in ext_flash
    Debug: load_byte(*rv, 140) loaded the value 204 from 140 in ext_flash
    Debug: load_byte(*rv, 141) loaded the value 204 from 141 in ext_flash
    Debug: load_byte(*rv, 142) loaded the value 204 from 142 in ext_flash
    Debug: load_byte(*rv, 143) loaded the value 204 from 143 in ext_flash
    Debug: load_byte(*rv, 144) loaded the value 204 from 144 in ext_flash
    Debug: load_byte(*rv, 145) loaded the value 204 from 145 in ext_flash
    Debug: load_byte(*rv, 146) loaded the value 204 from 146 in ext_flash
    Debug: load_byte(*rv, 147) loaded the value 204 from 147 in ext_flash
    Debug: load_byte(*rv, 148) loaded the value 204 from 148 in ext_flash
    Debug: load_byte(*rv, 149) loaded the value 204 from 149 in ext_flash
    Debug: load_byte(*rv, 150) loaded the value 204 from 150 in ext_flash
    Debug: load_byte(*rv, 151) loaded the value 204 from 151 in ext_flash
    Debug: load_byte(*rv, 152) loaded the value 204 from 152 in ext_flash
    Debug: load_byte(*rv, 153) loaded the value 204 from 153 in ext_flash
    Debug: load_byte(*rv, 154) loaded the value 204 from 154 in ext_flash
    Debug: load_byte(*rv, 155) loaded the value 204 from 155 in ext_flash
    Debug: load_byte(*rv, 156) loaded the value 204 from 156 in ext_flash
    Debug: load_byte(*rv, 157) loaded the value 204 from 157 in ext_flash
    Debug: load_byte(*rv, 158) loaded the value 204 from 158 in ext_flash
    Debug: load_byte(*rv, 159) loaded the value 204 from 159 in ext_flash
    Debug: load_byte(*rv, 160) loaded the value 204 from 160 in ext_flash
    Debug: load_byte(*rv, 161) loaded the value 204 from 161 in ext_flash
    Debug: load_byte(*rv, 162) loaded the value 204 from 162 in ext_flash
    Debug: load_byte(*rv, 163) loaded the value 204 from 163 in ext_flash
    Debug: load_byte(*rv, 164) loaded the value 204 from 164 in ext_flash
    Debug: load_byte(*rv, 165) loaded the value 204 from 165 in ext_flash
    Debug: load_byte(*rv, 166) loaded the value 204 from 166 in ext_flash
    Debug: load_byte(*rv, 167) loaded the value 204 from 167 in ext_flash
    Debug: load_byte(*rv, 168) loaded the value 204 from 168 in ext_flash
    Debug: load_byte(*rv, 169) loaded the value 204 from 169 in ext_flash
    Debug: load_byte(*rv, 170) loaded the value 204 from 170 in ext_flash
    Debug: load_byte(*rv, 171) loaded the value 204 from 171 in ext_flash
    Debug: load_byte(*rv, 172) loaded the value 204 from 172 in ext_flash
    Debug: load_byte(*rv, 173) loaded the value 204 from 173 in ext_flash
    Debug: load_byte(*rv, 174) loaded the value 204 from 174 in ext_flash
    Debug: load_byte(*rv, 175) loaded the value 204 from 175 in ext_flash
    Debug: load_byte(*rv, 176) loaded the value 204 from 176 in ext_flash
    Debug: load_byte(*rv, 177) loaded the value 204 from 177 in ext_flash
    Debug: load_byte(*rv, 178) loaded the value 204 from 178 in ext_flash
    Debug: load_byte(*rv, 179) loaded the value 204 from 179 in ext_flash
    Debug: load_byte(*rv, 180) loaded the value 204 from 180 in ext_flash
    Debug: load_byte(*rv, 181) loaded the value 204 from 181 in ext_flash
    Debug: load_byte(*rv, 182) loaded the value 204 from 182 in ext_flash
    Debug: load_byte(*rv, 183) loaded the value 204 from 183 in ext_flash
    Debug: load_byte(*rv, 184) loaded the value 204 from 184 in ext_flash
    Debug: load_byte(*rv, 185) loaded the value 204 from 185 in ext_flash
    Debug: load_byte(*rv, 186) loaded the value 204 from 186 in ext_flash
    Debug: load_byte(*rv, 187) loaded the value 204 from 187 in ext_flash
    Debug: load_byte(*rv, 188) loaded the value 204 from 188 in ext_flash
    Debug: load_byte(*rv, 189) loaded the value 204 from 189 in ext_flash
    Debug: load_byte(*rv, 190) loaded the value 204 from 190 in ext_flash
    Debug: load_byte(*rv, 191) loaded the value 204 from 191 in ext_flash
    Debug: load_byte(*rv, 192) loaded the value 204 from 192 in ext_flash
    Debug: load_byte(*rv, 193) loaded the value 204 from 193 in ext_flash
    Debug: load_byte(*rv, 194) loaded the value 204 from 194 in ext_flash
    Debug: load_byte(*rv, 195) loaded the value 204 from 195 in ext_flash
    Debug: load_byte(*rv, 196) loaded the value 204 from 196 in ext_flash
    Debug: load_byte(*rv, 197) loaded the value 204 from 197 in ext_flash
    Debug: load_byte(*rv, 198) loaded the value 204 from 198 in ext_flash
    Debug: load_byte(*rv, 199) loaded the value 204 from 199 in ext_flash
    Debug: load_byte(*rv, 200) loaded the value 204 from 200 in ext_flash
    Debug: load_byte(*rv, 201) loaded the value 204 from 201 in ext_flash
    Debug: load_byte(*rv, 202) loaded the value 204 from 202 in ext_flash
    Debug: load_byte(*rv, 203) loaded the value 204 from 203 in ext_flash
    Debug: load_byte(*rv, 204) loaded the value 204 from 204 in ext_flash
    Debug: load_byte(*rv, 205) loaded the value 204 from 205 in ext_flash
    Debug: load_byte(*rv, 206) loaded the value 204 from 206 in ext_flash
    Debug: load_byte(*rv, 207) loaded the value 204 from 207 in ext_flash
    Debug: load_byte(*rv, 208) loaded the value 204 from 208 in ext_flash
    Debug: load_byte(*rv, 209) loaded the value 204 from 209 in ext_flash
    Debug: load_byte(*rv, 210) loaded the value 204 from 210 in ext_flash
    Debug: load_byte(*rv, 211) loaded the value 204 from 211 in ext_flash
    Debug: load_byte(*rv, 212) loaded the value 204 from 212 in ext_flash
    Debug: load_byte(*rv, 213) loaded the value 204 from 213 in ext_flash
    Debug: load_byte(*rv, 214) loaded the value 204 from 214 in ext_flash
    Debug: load_byte(*rv, 215) loaded the value 204 from 215 in ext_flash
    Debug: load_byte(*rv, 216) loaded the value 204 from 216 in ext_flash
    Debug: load_byte(*rv, 217) loaded the value 204 from 217 in ext_flash
    Debug: load_byte(*rv, 218) loaded the value 204 from 218 in ext_flash
    Debug: load_byte(*rv, 219) loaded the value 204 from 219 in ext_flash
    Debug: load_byte(*rv, 220) loaded the value 204 from 220 in ext_flash
    Debug: load_byte(*rv, 221) loaded the value 204 from 221 in ext_flash
    Debug: load_byte(*rv, 222) loaded the value 204 from 222 in ext_flash
    Debug: load_byte(*rv, 223) loaded the value 204 from 223 in ext_flash
    Debug: load_byte(*rv, 224) loaded the value 204 from 224 in ext_flash
    Debug: load_byte(*rv, 225) loaded the value 204 from 225 in ext_flash
    Debug: load_byte(*rv, 226) loaded the value 204 from 226 in ext_flash
    Debug: load_byte(*rv, 227) loaded the value 204 from 227 in ext_flash
    Debug: load_byte(*rv, 228) loaded the value 204 from 228 in ext_flash
    Debug: load_byte(*rv, 229) loaded the value 204 from 229 in ext_flash
    Debug: load_byte(*rv, 230) loaded the value 204 from 230 in ext_flash
    Debug: load_byte(*rv, 231) loaded the value 204 from 231 in ext_flash
    Debug: load_byte(*rv, 232) loaded the value 204 from 232 in ext_flash
    Debug: load_byte(*rv, 233) loaded the value 204 from 233 in ext_flash
    Debug: load_byte(*rv, 234) loaded the value 204 from 234 in ext_flash
    Debug: load_byte(*rv, 235) loaded the value 204 from 235 in ext_flash
    Debug: load_byte(*rv, 236) loaded the value 204 from 236 in ext_flash
    Debug: load_byte(*rv, 237) loaded the value 204 from 237 in ext_flash
    Debug: load_byte(*rv, 238) loaded the value 204 from 238 in ext_flash
    Debug: load_byte(*rv, 239) loaded the value 204 from 239 in ext_flash
    Debug: load_byte(*rv, 240) loaded the value 204 from 240 in ext_flash
    Debug: load_byte(*rv, 241) loaded the value 204 from 241 in ext_flash
    Debug: load_byte(*rv, 242) loaded the value 204 from 242 in ext_flash
    Debug: load_byte(*rv, 243) loaded the value 204 from 243 in ext_flash
    Debug: load_byte(*rv, 244) loaded the value 204 from 244 in ext_flash
    Debug: load_byte(*rv, 245) loaded the value 204 from 245 in ext_flash
    Debug: load_byte(*rv, 246) loaded the value 204 from 246 in ext_flash
    Debug: load_byte(*rv, 247) loaded the value 204 from 247 in ext_flash
    Debug: load_byte(*rv, 248) loaded the value 204 from 248 in ext_flash
    Debug: load_byte(*rv, 249) loaded the value 204 from 249 in ext_flash
    Debug: load_byte(*rv, 250) loaded the value 204 from 250 in ext_flash
    Debug: load_byte(*rv, 251) loaded the value 204 from 251 in ext_flash
    Debug: load_byte(*rv, 252) loaded the value 204 from 252 in ext_flash
    Debug: load_byte(*rv, 253) loaded the value 204 from 253 in ext_flash
    Debug: load_byte(*rv, 254) loaded the value 204 from 254 in ext_flash
    Debug: load_byte(*rv, 255) loaded the value 204 from 255 in ext_flash
    Debug: load_byte(*rv, 256) loaded the value 204 from 256 in ext_flash
    Debug: load_byte(*rv, 257) loaded the value 204 from 257 in ext_flash
    Debug: load_byte(*rv, 258) loaded the value 204 from 258 in ext_flash
    Debug: load_byte(*rv, 259) loaded the value 204 from 259 in ext_flash
    Debug: load_byte(*rv, 260) loaded the value 204 from 260 in ext_flash
    Debug: load_byte(*rv, 261) loaded the value 204 from 261 in ext_flash
    Debug: load_byte(*rv, 262) loaded the value 204 from 262 in ext_flash
    Debug: load_byte(*rv, 263) loaded the value 204 from 263 in ext_flash
    Debug: load_byte(*rv, 264) loaded the value 204 from 264 in ext_flash
    Debug: load_byte(*rv, 265) loaded the value 204 from 265 in ext_flash
    Debug: load_byte(*rv, 266) loaded the value 204 from 266 in ext_flash
    Debug: load_byte(*rv, 267) loaded the value 204 from 267 in ext_flash
    Debug: load_byte(*rv, 268) loaded the value 204 from 268 in ext_flash
    Debug: load_byte(*rv, 269) loaded the value 204 from 269 in ext_flash
    Debug: load_byte(*rv, 270) loaded the value 204 from 270 in ext_flash
    Debug: load_byte(*rv, 271) loaded the value 204 from 271 in ext_flash
    Debug: load_byte(*rv, 272) loaded the value 204 from 272 in ext_flash
    Debug: load_byte(*rv, 273) loaded the value 204 from 273 in ext_flash
    Debug: load_byte(*rv, 274) loaded the value 204 from 274 in ext_flash
    Debug: load_byte(*rv, 275) loaded the value 204 from 275 in ext_flash
    Debug: load_byte(*rv, 276) loaded the value 204 from 276 in ext_flash
    Debug: load_byte(*rv, 277) loaded the value 204 from 277 in ext_flash
    Debug: load_byte(*rv, 278) loaded the value 204 from 278 in ext_flash
    Debug: load_byte(*rv, 279) loaded the value 204 from 279 in ext_flash
    Debug: load_byte(*rv, 280) loaded the value 204 from 280 in ext_flash
    Debug: load_byte(*rv, 281) loaded the value 204 from 281 in ext_flash
    Debug: load_byte(*rv, 282) loaded the value 204 from 282 in ext_flash
    Debug: load_byte(*rv, 283) loaded the value 204 from 283 in ext_flash
    Debug: load_byte(*rv, 284) loaded the value 204 from 284 in ext_flash
    Debug: load_byte(*rv, 285) loaded the value 204 from 285 in ext_flash
    Debug: load_byte(*rv, 286) loaded the value 204 from 286 in ext_flash
    Debug: load_byte(*rv, 287) loaded the value 204 from 287 in ext_flash
    Debug: load_byte(*rv, 288) loaded the value 204 from 288 in ext_flash
    Debug: load_byte(*rv, 289) loaded the value 204 from 289 in ext_flash
    Debug: load_byte(*rv, 290) loaded the value 204 from 290 in ext_flash
    Debug: load_byte(*rv, 291) loaded the value 204 from 291 in ext_flash
    Debug: load_byte(*rv, 292) loaded the value 204 from 292 in ext_flash
    Debug: load_byte(*rv, 293) loaded the value 204 from 293 in ext_flash
    Debug: load_byte(*rv, 294) loaded the value 204 from 294 in ext_flash
    Debug: load_byte(*rv, 295) loaded the value 204 from 295 in ext_flash
    Debug: load_byte(*rv, 296) loaded the value 204 from 296 in ext_flash
    Debug: load_byte(*rv, 297) loaded the value 204 from 297 in ext_flash
    Debug: load_byte(*rv, 298) loaded the value 204 from 298 in ext_flash
    Debug: load_byte(*rv, 299) loaded the value 204 from 299 in ext_flash
    Debug: load_byte(*rv, 300) loaded the value 204 from 300 in ext_flash
    Debug: load_byte(*rv, 301) loaded the value 204 from 301 in ext_flash
    Debug: load_byte(*rv, 302) loaded the value 204 from 302 in ext_flash
    Debug: load_byte(*rv, 303) loaded the value 204 from 303 in ext_flash
    Debug: load_byte(*rv, 304) loaded the value 204 from 304 in ext_flash
    Debug: load_byte(*rv, 305) loaded the value 204 from 305 in ext_flash
    Debug: load_byte(*rv, 306) loaded the value 204 from 306 in ext_flash
    Debug: load_byte(*rv, 307) loaded the value 204 from 307 in ext_flash
    Debug: load_byte(*rv, 308) loaded the value 204 from 308 in ext_flash
    Debug: load_byte(*rv, 309) loaded the value 204 from 309 in ext_flash
    Debug: load_byte(*rv, 310) loaded the value 204 from 310 in ext_flash
    Debug: load_byte(*rv, 311) loaded the value 204 from 311 in ext_flash
    Debug: load_byte(*rv, 312) loaded the value 204 from 312 in ext_flash
    Debug: load_byte(*rv, 313) loaded the value 204 from 313 in ext_flash
    Debug: load_byte(*rv, 314) loaded the value 204 from 314 in ext_flash
    Debug: load_byte(*rv, 315) loaded the value 204 from 315 in ext_flash
    Debug: load_byte(*rv, 316) loaded the value 204 from 316 in ext_flash
    Debug: load_byte(*rv, 317) loaded the value 204 from 317 in ext_flash
    Debug: load_byte(*rv, 318) loaded the value 204 from 318 in ext_flash
    Debug: load_byte(*rv, 319) loaded the value 204 from 319 in ext_flash
    Debug: load_byte(*rv, 320) loaded the value 204 from 320 in ext_flash
    Debug: load_byte(*rv, 321) loaded the value 204 from 321 in ext_flash
    Debug: load_byte(*rv, 322) loaded the value 204 from 322 in ext_flash
    Debug: load_byte(*rv, 323) loaded the value 204 from 323 in ext_flash
    Debug: load_byte(*rv, 324) loaded the value 204 from 324 in ext_flash
    Debug: load_byte(*rv, 325) loaded the value 204 from 325 in ext_flash
    Debug: load_byte(*rv, 326) loaded the value 204 from 326 in ext_flash
    Debug: load_byte(*rv, 327) loaded the value 204 from 327 in ext_flash
    Debug: load_byte(*rv, 328) loaded the value 204 from 328 in ext_flash
    Debug: load_byte(*rv, 329) loaded the value 204 from 329 in ext_flash
    Debug: load_byte(*rv, 330) loaded the value 204 from 330 in ext_flash
    Debug: load_byte(*rv, 331) loaded the value 204 from 331 in ext_flash
    Debug: load_byte(*rv, 332) loaded the value 204 from 332 in ext_flash
    Debug: load_byte(*rv, 333) loaded the value 204 from 333 in ext_flash
    Debug: load_byte(*rv, 334) loaded the value 204 from 334 in ext_flash
    Debug: load_byte(*rv, 335) loaded the value 204 from 335 in ext_flash
    Debug: load_byte(*rv, 336) loaded the value 204 from 336 in ext_flash
    Debug: load_byte(*rv, 337) loaded the value 204 from 337 in ext_flash
    Debug: load_byte(*rv, 338) loaded the value 204 from 338 in ext_flash
    Debug: load_byte(*rv, 339) loaded the value 204 from 339 in ext_flash
    Debug: load_byte(*rv, 340) loaded the value 204 from 340 in ext_flash
    Debug: load_byte(*rv, 341) loaded the value 204 from 341 in ext_flash
    Debug: load_byte(*rv, 342) loaded the value 204 from 342 in ext_flash
    Debug: load_byte(*rv, 343) loaded the value 204 from 343 in ext_flash
    Debug: load_byte(*rv, 344) loaded the value 204 from 344 in ext_flash
    Debug: load_byte(*rv, 345) loaded the value 204 from 345 in ext_flash
    Debug: load_byte(*rv, 346) loaded the value 204 from 346 in ext_flash
    Debug: load_byte(*rv, 347) loaded the value 204 from 347 in ext_flash
    Debug: load_byte(*rv, 348) loaded the value 204 from 348 in ext_flash
    Debug: load_byte(*rv, 349) loaded the value 204 from 349 in ext_flash
    Debug: load_byte(*rv, 350) loaded the value 204 from 350 in ext_flash
    Debug: load_byte(*rv, 351) loaded the value 204 from 351 in ext_flash
    Debug: load_byte(*rv, 352) loaded the value 204 from 352 in ext_flash
    Debug: load_byte(*rv, 353) loaded the value 204 from 353 in ext_flash
    Debug: load_byte(*rv, 354) loaded the value 204 from 354 in ext_flash
    Debug: load_byte(*rv, 355) loaded the value 204 from 355 in ext_flash
    Debug: load_byte(*rv, 356) loaded the value 204 from 356 in ext_flash
    Debug: load_byte(*rv, 357) loaded the value 204 from 357 in ext_flash
    Debug: load_byte(*rv, 358) loaded the value 204 from 358 in ext_flash
    Debug: load_byte(*rv, 359) loaded the value 204 from 359 in ext_flash
    Debug: load_byte(*rv, 360) loaded the value 204 from 360 in ext_flash
    Debug: load_byte(*rv, 361) loaded the value 204 from 361 in ext_flash
    Debug: load_byte(*rv, 362) loaded the value 204 from 362 in ext_flash
    Debug: load_byte(*rv, 363) loaded the value 204 from 363 in ext_flash
    Debug: load_byte(*rv, 364) loaded the value 204 from 364 in ext_flash
    Debug: load_byte(*rv, 365) loaded the value 204 from 365 in ext_flash
    Debug: load_byte(*rv, 366) loaded the value 204 from 366 in ext_flash
    Debug: load_byte(*rv, 367) loaded the value 204 from 367 in ext_flash
    Debug: load_byte(*rv, 368) loaded the value 204 from 368 in ext_flash
    Debug: load_byte(*rv, 369) loaded the value 204 from 369 in ext_flash
    Debug: load_byte(*rv, 370) loaded the value 204 from 370 in ext_flash
    Debug: load_byte(*rv, 371) loaded the value 204 from 371 in ext_flash
    Debug: load_byte(*rv, 372) loaded the value 204 from 372 in ext_flash
    Debug: load_byte(*rv, 373) loaded the value 204 from 373 in ext_flash
    Debug: load_byte(*rv, 374) loaded the value 204 from 374 in ext_flash
    Debug: load_byte(*rv, 375) loaded the value 204 from 375 in ext_flash
    Debug: load_byte(*rv, 376) loaded the value 204 from 376 in ext_flash
    Debug: load_byte(*rv, 377) loaded the value 204 from 377 in ext_flash
    Debug: load_byte(*rv, 378) loaded the value 204 from 378 in ext_flash
    Debug: load_byte(*rv, 379) loaded the value 204 from 379 in ext_flash
    Debug: load_byte(*rv, 380) loaded the value 204 from 380 in ext_flash
    Debug: load_byte(*rv, 381) loaded the value 204 from 381 in ext_flash
    Debug: load_byte(*rv, 382) loaded the value 204 from 382 in ext_flash
    Debug: load_byte(*rv, 383) loaded the value 204 from 383 in ext_flash
    Debug: load_byte(*rv, 384) loaded the value 204 from 384 in ext_flash
    Debug: load_byte(*rv, 385) loaded the value 204 from 385 in ext_flash
    Debug: load_byte(*rv, 386) loaded the value 204 from 386 in ext_flash
    Debug: load_byte(*rv, 387) loaded the value 204 from 387 in ext_flash
    Debug: load_byte(*rv, 388) loaded the value 204 from 388 in ext_flash
    Debug: load_byte(*rv, 389) loaded the value 204 from 389 in ext_flash
    Debug: load_byte(*rv, 390) loaded the value 204 from 390 in ext_flash
    Debug: load_byte(*rv, 391) loaded the value 204 from 391 in ext_flash
    Debug: load_byte(*rv, 392) loaded the value 204 from 392 in ext_flash
    Debug: load_byte(*rv, 393) loaded the value 204 from 393 in ext_flash
    Debug: load_byte(*rv, 394) loaded the value 204 from 394 in ext_flash
    Debug: load_byte(*rv, 395) loaded the value 204 from 395 in ext_flash
    Debug: load_byte(*rv, 396) loaded the value 204 from 396 in ext_flash
    Debug: load_byte(*rv, 397) loaded the value 204 from 397 in ext_flash
    Debug: load_byte(*rv, 398) loaded the value 204 from 398 in ext_flash
    Debug: load_byte(*rv, 399) loaded the value 204 from 399 in ext_flash
    Debug: load_byte(*rv, 400) loaded the value 204 from 400 in ext_flash
    Debug: load_byte(*rv, 401) loaded the value 204 from 401 in ext_flash
    Debug: load_byte(*rv, 402) loaded the value 204 from 402 in ext_flash
    Debug: load_byte(*rv, 403) loaded the value 204 from 403 in ext_flash
    Debug: load_byte(*rv, 404) loaded the value 204 from 404 in ext_flash
    Debug: load_byte(*rv, 405) loaded the value 204 from 405 in ext_flash
    Debug: load_byte(*rv, 406) loaded the value 204 from 406 in ext_flash
    Debug: load_byte(*rv, 407) loaded the value 204 from 407 in ext_flash
    Debug: load_byte(*rv, 408) loaded the value 204 from 408 in ext_flash
    Debug: load_byte(*rv, 409) loaded the value 204 from 409 in ext_flash
    Debug: load_byte(*rv, 410) loaded the value 204 from 410 in ext_flash
    Debug: load_byte(*rv, 411) loaded the value 204 from 411 in ext_flash
    Debug: load_byte(*rv, 412) loaded the value 204 from 412 in ext_flash
    Debug: load_byte(*rv, 413) loaded the value 204 from 413 in ext_flash
    Debug: load_byte(*rv, 414) loaded the value 204 from 414 in ext_flash
    Debug: load_byte(*rv, 415) loaded the value 204 from 415 in ext_flash
    Debug: load_byte(*rv, 416) loaded the value 204 from 416 in ext_flash
    Debug: load_byte(*rv, 417) loaded the value 204 from 417 in ext_flash
    Debug: load_byte(*rv, 418) loaded the value 204 from 418 in ext_flash
    Debug: load_byte(*rv, 419) loaded the value 204 from 419 in ext_flash
    Debug: load_byte(*rv, 420) loaded the value 204 from 420 in ext_flash
    Debug: load_byte(*rv, 421) loaded the value 204 from 421 in ext_flash
    Debug: load_byte(*rv, 422) loaded the value 204 from 422 in ext_flash
    Debug: load_byte(*rv, 423) loaded the value 204 from 423 in ext_flash
    Debug: load_byte(*rv, 424) loaded the value 204 from 424 in ext_flash
    Debug: load_byte(*rv, 425) loaded the value 204 from 425 in ext_flash
    Debug: load_byte(*rv, 426) loaded the value 204 from 426 in ext_flash
    Debug: load_byte(*rv, 427) loaded the value 204 from 427 in ext_flash
    Debug: load_byte(*rv, 428) loaded the value 204 from 428 in ext_flash
    Debug: load_byte(*rv, 429) loaded the value 204 from 429 in ext_flash
    Debug: load_byte(*rv, 430) loaded the value 204 from 430 in ext_flash
    Debug: load_byte(*rv, 431) loaded the value 204 from 431 in ext_flash
    Debug: load_byte(*rv, 432) loaded the value 204 from 432 in ext_flash
    Debug: load_byte(*rv, 433) loaded the value 204 from 433 in ext_flash
    Debug: load_byte(*rv, 434) loaded the value 204 from 434 in ext_flash
    Debug: load_byte(*rv, 435) loaded the value 204 from 435 in ext_flash
    Debug: load_byte(*rv, 436) loaded the value 204 from 436 in ext_flash
    Debug: load_byte(*rv, 437) loaded the value 204 from 437 in ext_flash
    Debug: load_byte(*rv, 438) loaded the value 204 from 438 in ext_flash
    Debug: load_byte(*rv, 439) loaded the value 204 from 439 in ext_flash
    Debug: load_byte(*rv, 440) loaded the value 204 from 440 in ext_flash
    Debug: load_byte(*rv, 441) loaded the value 204 from 441 in ext_flash
    Debug: load_byte(*rv, 442) loaded the value 204 from 442 in ext_flash
    Debug: load_byte(*rv, 443) loaded the value 204 from 443 in ext_flash
    Debug: load_byte(*rv, 444) loaded the value 204 from 444 in ext_flash
    Debug: load_byte(*rv, 445) loaded the value 204 from 445 in ext_flash
    Debug: load_byte(*rv, 446) loaded the value 204 from 446 in ext_flash
    Debug: load_byte(*rv, 447) loaded the value 204 from 447 in ext_flash
    Debug: load_byte(*rv, 448) loaded the value 204 from 448 in ext_flash
    Debug: load_byte(*rv, 449) loaded the value 204 from 449 in ext_flash
    Debug: load_byte(*rv, 450) loaded the value 204 from 450 in ext_flash
    Debug: load_byte(*rv, 451) loaded the value 204 from 451 in ext_flash
    Debug: load_byte(*rv, 452) loaded the value 204 from 452 in ext_flash
    Debug: load_byte(*rv, 453) loaded the value 204 from 453 in ext_flash
    Debug: load_byte(*rv, 454) loaded the value 204 from 454 in ext_flash
    Debug: load_byte(*rv, 455) loaded the value 204 from 455 in ext_flash
    Debug: load_byte(*rv, 456) loaded the value 204 from 456 in ext_flash
    Debug: load_byte(*rv, 457) loaded the value 204 from 457 in ext_flash
    Debug: load_byte(*rv, 458) loaded the value 204 from 458 in ext_flash
    Debug: load_byte(*rv, 459) loaded the value 204 from 459 in ext_flash
    Debug: load_byte(*rv, 460) loaded the value 204 from 460 in ext_flash
    Debug: load_byte(*rv, 461) loaded the value 204 from 461 in ext_flash
    Debug: load_byte(*rv, 462) loaded the value 204 from 462 in ext_flash
    Debug: load_byte(*rv, 463) loaded the value 204 from 463 in ext_flash
    Debug: load_byte(*rv, 464) loaded the value 204 from 464 in ext_flash
    Debug: load_byte(*rv, 465) loaded the value 204 from 465 in ext_flash
    Debug: load_byte(*rv, 466) loaded the value 204 from 466 in ext_flash
    Debug: load_byte(*rv, 467) loaded the value 204 from 467 in ext_flash
    Debug: load_byte(*rv, 468) loaded the value 204 from 468 in ext_flash
    Debug: load_byte(*rv, 469) loaded the value 204 from 469 in ext_flash
    Debug: load_byte(*rv, 470) loaded the value 204 from 470 in ext_flash
    Debug: load_byte(*rv, 471) loaded the value 204 from 471 in ext_flash
    Debug: load_byte(*rv, 472) loaded the value 204 from 472 in ext_flash
    Debug: load_byte(*rv, 473) loaded the value 204 from 473 in ext_flash
    Debug: load_byte(*rv, 474) loaded the value 204 from 474 in ext_flash
    Debug: load_byte(*rv, 475) loaded the value 204 from 475 in ext_flash
    Debug: load_byte(*rv, 476) loaded the value 204 from 476 in ext_flash
    Debug: load_byte(*rv, 477) loaded the value 204 from 477 in ext_flash
    Debug: load_byte(*rv, 478) loaded the value 204 from 478 in ext_flash
    Debug: load_byte(*rv, 479) loaded the value 204 from 479 in ext_flash
    Debug: load_byte(*rv, 480) loaded the value 204 from 480 in ext_flash
    Debug: load_byte(*rv, 481) loaded the value 204 from 481 in ext_flash
    Debug: load_byte(*rv, 482) loaded the value 204 from 482 in ext_flash
    Debug: load_byte(*rv, 483) loaded the value 204 from 483 in ext_flash
    Debug: load_byte(*rv, 484) loaded the value 204 from 484 in ext_flash
    Debug: load_byte(*rv, 485) loaded the value 204 from 485 in ext_flash
    Debug: load_byte(*rv, 486) loaded the value 204 from 486 in ext_flash
    Debug: load_byte(*rv, 487) loaded the value 204 from 487 in ext_flash
    Debug: load_byte(*rv, 488) loaded the value 204 from 488 in ext_flash
    Debug: load_byte(*rv, 489) loaded the value 204 from 489 in ext_flash
    Debug: load_byte(*rv, 490) loaded the value 204 from 490 in ext_flash
    Debug: load_byte(*rv, 491) loaded the value 204 from 491 in ext_flash
    Debug: load_byte(*rv, 492) loaded the value 204 from 492 in ext_flash
    Debug: load_byte(*rv, 493) loaded the value 204 from 493 in ext_flash
    Debug: load_byte(*rv, 494) loaded the value 204 from 494 in ext_flash
    Debug: load_byte(*rv, 495) loaded the value 204 from 495 in ext_flash
    Debug: load_byte(*rv, 496) loaded the value 204 from 496 in ext_flash
    Debug: load_byte(*rv, 497) loaded the value 204 from 497 in ext_flash
    Debug: load_byte(*rv, 498) loaded the value 204 from 498 in ext_flash
    Debug: load_byte(*rv, 499) loaded the value 204 from 499 in ext_flash
    Debug: load_byte(*rv, 500) loaded the value 204 from 500 in ext_flash
    Debug: load_byte(*rv, 501) loaded the value 204 from 501 in ext_flash
    Debug: load_byte(*rv, 502) loaded the value 204 from 502 in ext_flash
    Debug: load_byte(*rv, 503) loaded the value 204 from 503 in ext_flash
    Debug: load_byte(*rv, 504) loaded the value 204 from 504 in ext_flash
    Debug: load_byte(*rv, 505) loaded the value 204 from 505 in ext_flash
    Debug: load_byte(*rv, 506) loaded the value 204 from 506 in ext_flash
    Debug: load_byte(*rv, 507) loaded the value 204 from 507 in ext_flash
    Debug: load_byte(*rv, 508) loaded the value 204 from 508 in ext_flash
    Debug: load_byte(*rv, 509) loaded the value 204 from 509 in ext_flash
    Debug: load_byte(*rv, 510) loaded the value 204 from 510 in ext_flash
    Debug: load_byte(*rv, 511) loaded the value 204 from 511 in ext_flash
    Debug: load_byte(*rv, 512) loaded the value 204 from 512 in ext_flash
    Debug: load_byte(*rv, 513) loaded the value 204 from 513 in ext_flash
    Debug: load_byte(*rv, 514) loaded the value 204 from 514 in ext_flash
    Debug: load_byte(*rv, 515) loaded the value 204 from 515 in ext_flash
    Debug: load_byte(*rv, 516) loaded the value 204 from 516 in ext_flash
    Debug: load_byte(*rv, 517) loaded the value 204 from 517 in ext_flash
    Debug: load_byte(*rv, 518) loaded the value 204 from 518 in ext_flash
    Debug: load_byte(*rv, 519) loaded the value 204 from 519 in ext_flash
    Debug: load_byte(*rv, 520) loaded the value 204 from 520 in ext_flash
    Debug: load_byte(*rv, 521) loaded the value 204 from 521 in ext_flash
    Debug: load_byte(*rv, 522) loaded the value 204 from 522 in ext_flash
    Debug: load_byte(*rv, 523) loaded the value 204 from 523 in ext_flash
    Debug: load_byte(*rv, 524) loaded the value 204 from 524 in ext_flash
    Debug: load_byte(*rv, 525) loaded the value 204 from 525 in ext_flash
    Debug: load_byte(*rv, 526) loaded the value 204 from 526 in ext_flash
    Debug: load_byte(*rv, 527) loaded the value 204 from 527 in ext_flash
    Debug: load_byte(*rv, 528) loaded the value 204 from 528 in ext_flash
    Debug: load_byte(*rv, 529) loaded the value 204 from 529 in ext_flash
    Debug: load_byte(*rv, 530) loaded the value 204 from 530 in ext_flash
    Debug: load_byte(*rv, 531) loaded the value 204 from 531 in ext_flash
    Debug: load_byte(*rv, 532) loaded the value 204 from 532 in ext_flash
    Debug: load_byte(*rv, 533) loaded the value 204 from 533 in ext_flash
    Debug: load_byte(*rv, 534) loaded the value 204 from 534 in ext_flash
    Debug: load_byte(*rv, 535) loaded the value 204 from 535 in ext_flash
    Debug: load_byte(*rv, 536) loaded the value 204 from 536 in ext_flash
    Debug: load_byte(*rv, 537) loaded the value 204 from 537 in ext_flash
    Debug: load_byte(*rv, 538) loaded the value 204 from 538 in ext_flash
    Debug: load_byte(*rv, 539) loaded the value 204 from 539 in ext_flash
    Debug: load_byte(*rv, 540) loaded the value 204 from 540 in ext_flash
    Debug: load_byte(*rv, 541) loaded the value 204 from 541 in ext_flash
    Debug: load_byte(*rv, 542) loaded the value 204 from 542 in ext_flash
    Debug: load_byte(*rv, 543) loaded the value 204 from 543 in ext_flash
    Debug: load_byte(*rv, 544) loaded the value 204 from 544 in ext_flash
    Debug: load_byte(*rv, 545) loaded the value 204 from 545 in ext_flash
    Debug: load_byte(*rv, 546) loaded the value 204 from 546 in ext_flash
    Debug: load_byte(*rv, 547) loaded the value 204 from 547 in ext_flash
    Debug: load_byte(*rv, 548) loaded the value 204 from 548 in ext_flash
    Debug: load_byte(*rv, 549) loaded the value 204 from 549 in ext_flash
    Debug: load_byte(*rv, 550) loaded the value 204 from 550 in ext_flash
    Debug: load_byte(*rv, 551) loaded the value 204 from 551 in ext_flash
    Debug: load_byte(*rv, 552) loaded the value 204 from 552 in ext_flash
    Debug: load_byte(*rv, 553) loaded the value 204 from 553 in ext_flash
    Debug: load_byte(*rv, 554) loaded the value 204 from 554 in ext_flash
    Debug: load_byte(*rv, 555) loaded the value 204 from 555 in ext_flash
    Debug: load_byte(*rv, 556) loaded the value 204 from 556 in ext_flash
    Debug: load_byte(*rv, 557) loaded the value 204 from 557 in ext_flash
    Debug: load_byte(*rv, 558) loaded the value 204 from 558 in ext_flash
    Debug: load_byte(*rv, 559) loaded the value 204 from 559 in ext_flash
    Debug: load_byte(*rv, 560) loaded the value 204 from 560 in ext_flash
    Debug: load_byte(*rv, 561) loaded the value 204 from 561 in ext_flash
    Debug: load_byte(*rv, 562) loaded the value 204 from 562 in ext_flash
    Debug: load_byte(*rv, 563) loaded the value 204 from 563 in ext_flash
    Debug: load_byte(*rv, 564) loaded the value 204 from 564 in ext_flash
    Debug: load_byte(*rv, 565) loaded the value 204 from 565 in ext_flash
    Debug: load_byte(*rv, 566) loaded the value 204 from 566 in ext_flash
    Debug: load_byte(*rv, 567) loaded the value 204 from 567 in ext_flash
    Debug: load_byte(*rv, 568) loaded the value 204 from 568 in ext_flash
    Debug: load_byte(*rv, 569) loaded the value 204 from 569 in ext_flash
    Debug: load_byte(*rv, 570) loaded the value 204 from 570 in ext_flash
    Debug: load_byte(*rv, 571) loaded the value 204 from 571 in ext_flash
    Debug: load_byte(*rv, 572) loaded the value 204 from 572 in ext_flash
    Debug: load_byte(*rv, 573) loaded the value 204 from 573 in ext_flash
    Debug: load_byte(*rv, 574) loaded the value 204 from 574 in ext_flash
    Debug: load_byte(*rv, 575) loaded the value 204 from 575 in ext_flash
    Debug: load_byte(*rv, 576) loaded the value 204 from 576 in ext_flash
    Debug: load_byte(*rv, 577) loaded the value 204 from 577 in ext_flash
    Debug: load_byte(*rv, 578) loaded the value 204 from 578 in ext_flash
    Debug: load_byte(*rv, 579) loaded the value 204 from 579 in ext_flash
    Debug: load_byte(*rv, 580) loaded the value 204 from 580 in ext_flash
    Debug: load_byte(*rv, 581) loaded the value 204 from 581 in ext_flash
    Debug: load_byte(*rv, 582) loaded the value 204 from 582 in ext_flash
    Debug: load_byte(*rv, 583) loaded the value 204 from 583 in ext_flash
    Debug: load_byte(*rv, 584) loaded the value 204 from 584 in ext_flash
    Debug: load_byte(*rv, 585) loaded the value 204 from 585 in ext_flash
    Debug: load_byte(*rv, 586) loaded the value 204 from 586 in ext_flash
    Debug: load_byte(*rv, 587) loaded the value 204 from 587 in ext_flash
    Debug: load_byte(*rv, 588) loaded the value 204 from 588 in ext_flash
    Debug: load_byte(*rv, 589) loaded the value 204 from 589 in ext_flash
    Debug: load_byte(*rv, 590) loaded the value 204 from 590 in ext_flash
    Debug: load_byte(*rv, 591) loaded the value 204 from 591 in ext_flash
    Debug: load_byte(*rv, 592) loaded the value 204 from 592 in ext_flash
    Debug: load_byte(*rv, 593) loaded the value 204 from 593 in ext_flash
    Debug: load_byte(*rv, 594) loaded the value 204 from 594 in ext_flash
    Debug: load_byte(*rv, 595) loaded the value 204 from 595 in ext_flash
    Debug: load_byte(*rv, 596) loaded the value 204 from 596 in ext_flash
    Debug: load_byte(*rv, 597) loaded the value 204 from 597 in ext_flash
    Debug: load_byte(*rv, 598) loaded the value 204 from 598 in ext_flash
    Debug: load_byte(*rv, 599) loaded the value 204 from 599 in ext_flash
    Debug: load_byte(*rv, 600) loaded the value 204 from 600 in ext_flash
    Debug: load_byte(*rv, 601) loaded the value 204 from 601 in ext_flash
    Debug: load_byte(*rv, 602) loaded the value 204 from 602 in ext_flash
    Debug: load_byte(*rv, 603) loaded the value 204 from 603 in ext_flash
    Debug: load_byte(*rv, 604) loaded the value 204 from 604 in ext_flash
    Debug: load_byte(*rv, 605) loaded the value 204 from 605 in ext_flash
    Debug: load_byte(*rv, 606) loaded the value 204 from 606 in ext_flash
    Debug: load_byte(*rv, 607) loaded the value 204 from 607 in ext_flash
    Debug: load_byte(*rv, 608) loaded the value 204 from 608 in ext_flash
    Debug: load_byte(*rv, 609) loaded the value 204 from 609 in ext_flash
    Debug: load_byte(*rv, 610) loaded the value 204 from 610 in ext_flash
    Debug: load_byte(*rv, 611) loaded the value 204 from 611 in ext_flash
    Debug: load_byte(*rv, 612) loaded the value 204 from 612 in ext_flash
    Debug: load_byte(*rv, 613) loaded the value 204 from 613 in ext_flash
    Debug: load_byte(*rv, 614) loaded the value 204 from 614 in ext_flash
    Debug: load_byte(*rv, 615) loaded the value 204 from 615 in ext_flash
    Debug: load_byte(*rv, 616) loaded the value 204 from 616 in ext_flash
    Debug: load_byte(*rv, 617) loaded the value 204 from 617 in ext_flash
    Debug: load_byte(*rv, 618) loaded the value 204 from 618 in ext_flash
    Debug: load_byte(*rv, 619) loaded the value 204 from 619 in ext_flash
    Debug: load_byte(*rv, 620) loaded the value 204 from 620 in ext_flash
    Debug: load_byte(*rv, 621) loaded the value 204 from 621 in ext_flash
    Debug: load_byte(*rv, 622) loaded the value 204 from 622 in ext_flash
    Debug: load_byte(*rv, 623) loaded the value 204 from 623 in ext_flash
    Debug: load_byte(*rv, 624) loaded the value 204 from 624 in ext_flash
    Debug: load_byte(*rv, 625) loaded the value 204 from 625 in ext_flash
    Debug: load_byte(*rv, 626) loaded the value 204 from 626 in ext_flash
    Debug: load_byte(*rv, 627) loaded the value 204 from 627 in ext_flash
    Debug: load_byte(*rv, 628) loaded the value 204 from 628 in ext_flash
    Debug: load_byte(*rv, 629) loaded the value 204 from 629 in ext_flash
    Debug: load_byte(*rv, 630) loaded the value 204 from 630 in ext_flash
    Debug: load_byte(*rv, 631) loaded the value 204 from 631 in ext_flash
    Debug: load_byte(*rv, 632) loaded the value 204 from 632 in ext_flash
    Debug: load_byte(*rv, 633) loaded the value 204 from 633 in ext_flash
    Debug: load_byte(*rv, 634) loaded the value 204 from 634 in ext_flash
    Debug: load_byte(*rv, 635) loaded the value 204 from 635 in ext_flash
    Debug: load_byte(*rv, 636) loaded the value 204 from 636 in ext_flash
    Debug: load_byte(*rv, 637) loaded the value 204 from 637 in ext_flash
    Debug: load_byte(*rv, 638) loaded the value 204 from 638 in ext_flash
    Debug: load_byte(*rv, 639) loaded the value 204 from 639 in ext_flash
    Debug: load_byte(*rv, 640) loaded the value 204 from 640 in ext_flash
    Debug: load_byte(*rv, 641) loaded the value 204 from 641 in ext_flash
    Debug: load_byte(*rv, 642) loaded the value 204 from 642 in ext_flash
    Debug: load_byte(*rv, 643) loaded the value 204 from 643 in ext_flash
    Debug: load_byte(*rv, 644) loaded the value 204 from 644 in ext_flash
    Debug: load_byte(*rv, 645) loaded the value 204 from 645 in ext_flash
    Debug: load_byte(*rv, 646) loaded the value 204 from 646 in ext_flash
    Debug: load_byte(*rv, 647) loaded the value 204 from 647 in ext_flash
    Debug: load_byte(*rv, 648) loaded the value 204 from 648 in ext_flash
    Debug: load_byte(*rv, 649) loaded the value 204 from 649 in ext_flash
    Debug: load_byte(*rv, 650) loaded the value 204 from 650 in ext_flash
    Debug: load_byte(*rv, 651) loaded the value 204 from 651 in ext_flash
    Debug: load_byte(*rv, 652) loaded the value 204 from 652 in ext_flash
    Debug: load_byte(*rv, 653) loaded the value 204 from 653 in ext_flash
    Debug: load_byte(*rv, 654) loaded the value 204 from 654 in ext_flash
    Debug: load_byte(*rv, 655) loaded the value 204 from 655 in ext_flash
    Debug: load_byte(*rv, 656) loaded the value 204 from 656 in ext_flash
    Debug: load_byte(*rv, 657) loaded the value 204 from 657 in ext_flash
    Debug: load_byte(*rv, 658) loaded the value 204 from 658 in ext_flash
    Debug: load_byte(*rv, 659) loaded the value 204 from 659 in ext_flash
    Debug: load_byte(*rv, 660) loaded the value 204 from 660 in ext_flash
    Debug: load_byte(*rv, 661) loaded the value 204 from 661 in ext_flash
    Debug: load_byte(*rv, 662) loaded the value 204 from 662 in ext_flash
    Debug: load_byte(*rv, 663) loaded the value 204 from 663 in ext_flash
    Debug: load_byte(*rv, 664) loaded the value 204 from 664 in ext_flash
    Debug: load_byte(*rv, 665) loaded the value 204 from 665 in ext_flash
    Debug: load_byte(*rv, 666) loaded the value 204 from 666 in ext_flash
    Debug: load_byte(*rv, 667) loaded the value 204 from 667 in ext_flash
    Debug: load_byte(*rv, 668) loaded the value 204 from 668 in ext_flash
    Debug: load_byte(*rv, 669) loaded the value 204 from 669 in ext_flash
    Debug: load_byte(*rv, 670) loaded the value 204 from 670 in ext_flash
    Debug: load_byte(*rv, 671) loaded the value 204 from 671 in ext_flash
    Debug: load_byte(*rv, 672) loaded the value 204 from 672 in ext_flash
    Debug: load_byte(*rv, 673) loaded the value 204 from 673 in ext_flash
    Debug: load_byte(*rv, 674) loaded the value 204 from 674 in ext_flash
    Debug: load_byte(*rv, 675) loaded the value 204 from 675 in ext_flash
    Debug: load_byte(*rv, 676) loaded the value 204 from 676 in ext_flash
    Debug: load_byte(*rv, 677) loaded the value 204 from 677 in ext_flash
    Debug: load_byte(*rv, 678) loaded the value 204 from 678 in ext_flash
    Debug: load_byte(*rv, 679) loaded the value 204 from 679 in ext_flash
    Debug: load_byte(*rv, 680) loaded the value 204 from 680 in ext_flash
    Debug: load_byte(*rv, 681) loaded the value 204 from 681 in ext_flash
    Debug: load_byte(*rv, 682) loaded the value 204 from 682 in ext_flash
    Debug: load_byte(*rv, 683) loaded the value 204 from 683 in ext_flash
    Debug: load_byte(*rv, 684) loaded the value 204 from 684 in ext_flash
    Debug: load_byte(*rv, 685) loaded the value 204 from 685 in ext_flash
    Debug: load_byte(*rv, 686) loaded the value 204 from 686 in ext_flash
    Debug: load_byte(*rv, 687) loaded the value 204 from 687 in ext_flash
    Debug: load_byte(*rv, 688) loaded the value 204 from 688 in ext_flash
    Debug: load_byte(*rv, 689) loaded the value 204 from 689 in ext_flash
    Debug: load_byte(*rv, 690) loaded the value 204 from 690 in ext_flash
    Debug: load_byte(*rv, 691) loaded the value 204 from 691 in ext_flash
    Debug: load_byte(*rv, 692) loaded the value 204 from 692 in ext_flash
    Debug: load_byte(*rv, 693) loaded the value 204 from 693 in ext_flash
    Debug: load_byte(*rv, 694) loaded the value 204 from 694 in ext_flash
    Debug: load_byte(*rv, 695) loaded the value 204 from 695 in ext_flash
    Debug: load_byte(*rv, 696) loaded the value 204 from 696 in ext_flash
    Debug: load_byte(*rv, 697) loaded the value 204 from 697 in ext_flash
    Debug: load_byte(*rv, 698) loaded the value 204 from 698 in ext_flash
    Debug: load_byte(*rv, 699) loaded the value 204 from 699 in ext_flash
    Debug: load_byte(*rv, 700) loaded the value 204 from 700 in ext_flash
    Debug: load_byte(*rv, 701) loaded the value 204 from 701 in ext_flash
    Debug: load_byte(*rv, 702) loaded the value 204 from 702 in ext_flash
    Debug: load_byte(*rv, 703) loaded the value 204 from 703 in ext_flash
    Debug: load_byte(*rv, 704) loaded the value 204 from 704 in ext_flash
    Debug: load_byte(*rv, 705) loaded the value 204 from 705 in ext_flash
    Debug: load_byte(*rv, 706) loaded the value 204 from 706 in ext_flash
    Debug: load_byte(*rv, 707) loaded the value 204 from 707 in ext_flash
    Debug: load_byte(*rv, 708) loaded the value 204 from 708 in ext_flash
    Debug: load_byte(*rv, 709) loaded the value 204 from 709 in ext_flash
    Debug: load_byte(*rv, 710) loaded the value 204 from 710 in ext_flash
    Debug: load_byte(*rv, 711) loaded the value 204 from 711 in ext_flash
    Debug: load_byte(*rv, 712) loaded the value 204 from 712 in ext_flash
    Debug: load_byte(*rv, 713) loaded the value 204 from 713 in ext_flash
    Debug: load_byte(*rv, 714) loaded the value 204 from 714 in ext_flash
    Debug: load_byte(*rv, 715) loaded the value 204 from 715 in ext_flash
    Debug: load_byte(*rv, 716) loaded the value 204 from 716 in ext_flash
    Debug: load_byte(*rv, 717) loaded the value 204 from 717 in ext_flash
    Debug: load_byte(*rv, 718) loaded the value 204 from 718 in ext_flash
    Debug: load_byte(*rv, 719) loaded the value 204 from 719 in ext_flash
    Debug: load_byte(*rv, 720) loaded the value 204 from 720 in ext_flash
    Debug: load_byte(*rv, 721) loaded the value 204 from 721 in ext_flash
    Debug: load_byte(*rv, 722) loaded the value 204 from 722 in ext_flash
    Debug: load_byte(*rv, 723) loaded the value 204 from 723 in ext_flash
    Debug: load_byte(*rv, 724) loaded the value 204 from 724 in ext_flash
    Debug: load_byte(*rv, 725) loaded the value 204 from 725 in ext_flash
    Debug: load_byte(*rv, 726) loaded the value 204 from 726 in ext_flash
    Debug: load_byte(*rv, 727) loaded the value 204 from 727 in ext_flash
    Debug: load_byte(*rv, 728) loaded the value 204 from 728 in ext_flash
    Debug: load_byte(*rv, 729) loaded the value 204 from 729 in ext_flash
    Debug: load_byte(*rv, 730) loaded the value 204 from 730 in ext_flash
    Debug: load_byte(*rv, 731) loaded the value 204 from 731 in ext_flash
    Debug: load_byte(*rv, 732) loaded the value 204 from 732 in ext_flash
    Debug: load_byte(*rv, 733) loaded the value 204 from 733 in ext_flash
    Debug: load_byte(*rv, 734) loaded the value 204 from 734 in ext_flash
    Debug: load_byte(*rv, 735) loaded the value 204 from 735 in ext_flash
    Debug: load_byte(*rv, 736) loaded the value 204 from 736 in ext_flash
    Debug: load_byte(*rv, 737) loaded the value 204 from 737 in ext_flash
    Debug: load_byte(*rv, 738) loaded the value 204 from 738 in ext_flash
    Debug: load_byte(*rv, 739) loaded the value 204 from 739 in ext_flash
    Debug: load_byte(*rv, 740) loaded the value 204 from 740 in ext_flash
    Debug: load_byte(*rv, 741) loaded the value 204 from 741 in ext_flash
    Debug: load_byte(*rv, 742) loaded the value 204 from 742 in ext_flash
    Debug: load_byte(*rv, 743) loaded the value 204 from 743 in ext_flash
    Debug: load_byte(*rv, 744) loaded the value 204 from 744 in ext_flash
    Debug: load_byte(*rv, 745) loaded the value 204 from 745 in ext_flash
    Debug: load_byte(*rv, 746) loaded the value 204 from 746 in ext_flash
    Debug: load_byte(*rv, 747) loaded the value 204 from 747 in ext_flash
    Debug: load_byte(*rv, 748) loaded the value 204 from 748 in ext_flash
    Debug: load_byte(*rv, 749) loaded the value 204 from 749 in ext_flash
    Debug: load_byte(*rv, 750) loaded the value 204 from 750 in ext_flash
    Debug: load_byte(*rv, 751) loaded the value 204 from 751 in ext_flash
    Debug: load_byte(*rv, 752) loaded the value 204 from 752 in ext_flash
    Debug: load_byte(*rv, 753) loaded the value 204 from 753 in ext_flash
    Debug: load_byte(*rv, 754) loaded the value 204 from 754 in ext_flash
    Debug: load_byte(*rv, 755) loaded the value 204 from 755 in ext_flash
    Debug: load_byte(*rv, 756) loaded the value 204 from 756 in ext_flash
    Debug: load_byte(*rv, 757) loaded the value 204 from 757 in ext_flash
    Debug: load_byte(*rv, 758) loaded the value 204 from 758 in ext_flash
    Debug: load_byte(*rv, 759) loaded the value 204 from 759 in ext_flash
    Debug: load_byte(*rv, 760) loaded the value 204 from 760 in ext_flash
    Debug: load_byte(*rv, 761) loaded the value 204 from 761 in ext_flash
    Debug: load_byte(*rv, 762) loaded the value 204 from 762 in ext_flash
    Debug: load_byte(*rv, 763) loaded the value 204 from 763 in ext_flash
    Debug: load_byte(*rv, 764) loaded the value 204 from 764 in ext_flash
    Debug: load_byte(*rv, 765) loaded the value 204 from 765 in ext_flash
    Debug: load_byte(*rv, 766) loaded the value 204 from 766 in ext_flash
    Debug: load_byte(*rv, 767) loaded the value 204 from 767 in ext_flash
    Debug: load_byte(*rv, 768) loaded the value 204 from 768 in ext_flash
    Debug: load_byte(*rv, 769) loaded the value 204 from 769 in ext_flash
    Debug: load_byte(*rv, 770) loaded the value 204 from 770 in ext_flash
    Debug: load_byte(*rv, 771) loaded the value 204 from 771 in ext_flash
    Debug: load_byte(*rv, 772) loaded the value 204 from 772 in ext_flash
    Debug: load_byte(*rv, 773) loaded the value 204 from 773 in ext_flash
    Debug: load_byte(*rv, 774) loaded the value 204 from 774 in ext_flash
    Debug: load_byte(*rv, 775) loaded the value 204 from 775 in ext_flash
    Debug: load_byte(*rv, 776) loaded the value 204 from 776 in ext_flash
    Debug: load_byte(*rv, 777) loaded the value 204 from 777 in ext_flash
    Debug: load_byte(*rv, 778) loaded the value 204 from 778 in ext_flash
    Debug: load_byte(*rv, 779) loaded the value 204 from 779 in ext_flash
    Debug: load_byte(*rv, 780) loaded the value 204 from 780 in ext_flash
    Debug: load_byte(*rv, 781) loaded the value 204 from 781 in ext_flash
    Debug: load_byte(*rv, 782) loaded the value 204 from 782 in ext_flash
    Debug: load_byte(*rv, 783) loaded the value 204 from 783 in ext_flash
    Debug: load_byte(*rv, 784) loaded the value 204 from 784 in ext_flash
    Debug: load_byte(*rv, 785) loaded the value 204 from 785 in ext_flash
    Debug: load_byte(*rv, 786) loaded the value 204 from 786 in ext_flash
    Debug: load_byte(*rv, 787) loaded the value 204 from 787 in ext_flash
    Debug: load_byte(*rv, 788) loaded the value 204 from 788 in ext_flash
    Debug: load_byte(*rv, 789) loaded the value 204 from 789 in ext_flash
    Debug: load_byte(*rv, 790) loaded the value 204 from 790 in ext_flash
    Debug: load_byte(*rv, 791) loaded the value 204 from 791 in ext_flash
    Debug: load_byte(*rv, 792) loaded the value 204 from 792 in ext_flash
    Debug: load_byte(*rv, 793) loaded the value 204 from 793 in ext_flash
    Debug: load_byte(*rv, 794) loaded the value 204 from 794 in ext_flash
    Debug: load_byte(*rv, 795) loaded the value 204 from 795 in ext_flash
    Debug: load_byte(*rv, 796) loaded the value 204 from 796 in ext_flash
    Debug: load_byte(*rv, 797) loaded the value 204 from 797 in ext_flash
    Debug: load_byte(*rv, 798) loaded the value 204 from 798 in ext_flash
    Debug: load_byte(*rv, 799) loaded the value 204 from 799 in ext_flash
    Debug: load_byte(*rv, 800) loaded the value 204 from 800 in ext_flash
    Debug: load_byte(*rv, 801) loaded the value 204 from 801 in ext_flash
    Debug: load_byte(*rv, 802) loaded the value 204 from 802 in ext_flash
    Debug: load_byte(*rv, 803) loaded the value 204 from 803 in ext_flash
    Debug: load_byte(*rv, 804) loaded the value 204 from 804 in ext_flash
    Debug: load_byte(*rv, 805) loaded the value 204 from 805 in ext_flash
    Debug: load_byte(*rv, 806) loaded the value 204 from 806 in ext_flash
    Debug: load_byte(*rv, 807) loaded the value 204 from 807 in ext_flash
    Debug: load_byte(*rv, 808) loaded the value 204 from 808 in ext_flash
    Debug: load_byte(*rv, 809) loaded the value 204 from 809 in ext_flash
    Debug: load_byte(*rv, 810) loaded the value 204 from 810 in ext_flash
    Debug: load_byte(*rv, 811) loaded the value 204 from 811 in ext_flash
    Debug: load_byte(*rv, 812) loaded the value 204 from 812 in ext_flash
    Debug: load_byte(*rv, 813) loaded the value 204 from 813 in ext_flash
    Debug: load_byte(*rv, 814) loaded the value 204 from 814 in ext_flash
    Debug: load_byte(*rv, 815) loaded the value 204 from 815 in ext_flash
    Debug: load_byte(*rv, 816) loaded the value 204 from 816 in ext_flash
    Debug: load_byte(*rv, 817) loaded the value 204 from 817 in ext_flash
    Debug: load_byte(*rv, 818) loaded the value 204 from 818 in ext_flash
    Debug: load_byte(*rv, 819) loaded the value 204 from 819 in ext_flash
    Debug: load_byte(*rv, 820) loaded the value 204 from 820 in ext_flash
    Debug: load_byte(*rv, 821) loaded the value 204 from 821 in ext_flash
    Debug: load_byte(*rv, 822) loaded the value 204 from 822 in ext_flash
    Debug: load_byte(*rv, 823) loaded the value 204 from 823 in ext_flash
    Debug: load_byte(*rv, 824) loaded the value 204 from 824 in ext_flash
    Debug: load_byte(*rv, 825) loaded the value 204 from 825 in ext_flash
    Debug: load_byte(*rv, 826) loaded the value 204 from 826 in ext_flash
    Debug: load_byte(*rv, 827) loaded the value 204 from 827 in ext_flash
    Debug: load_byte(*rv, 828) loaded the value 204 from 828 in ext_flash
    Debug: load_byte(*rv, 829) loaded the value 204 from 829 in ext_flash
    Debug: load_byte(*rv, 830) loaded the value 204 from 830 in ext_flash
    Debug: load_byte(*rv, 831) loaded the value 204 from 831 in ext_flash
    Debug: load_byte(*rv, 832) loaded the value 204 from 832 in ext_flash
    Debug: load_byte(*rv, 833) loaded the value 204 from 833 in ext_flash
    Debug: load_byte(*rv, 834) loaded the value 204 from 834 in ext_flash
    Debug: load_byte(*rv, 835) loaded the value 204 from 835 in ext_flash
    Debug: load_byte(*rv, 836) loaded the value 204 from 836 in ext_flash
    Debug: load_byte(*rv, 837) loaded the value 204 from 837 in ext_flash
    Debug: load_byte(*rv, 838) loaded the value 204 from 838 in ext_flash
    Debug: load_byte(*rv, 839) loaded the value 204 from 839 in ext_flash
    Debug: load_byte(*rv, 840) loaded the value 204 from 840 in ext_flash
    Debug: load_byte(*rv, 841) loaded the value 204 from 841 in ext_flash
    Debug: load_byte(*rv, 842) loaded the value 204 from 842 in ext_flash
    Debug: load_byte(*rv, 843) loaded the value 204 from 843 in ext_flash
    Debug: load_byte(*rv, 844) loaded the value 204 from 844 in ext_flash
    Debug: load_byte(*rv, 845) loaded the value 204 from 845 in ext_flash
    Debug: load_byte(*rv, 846) loaded the value 204 from 846 in ext_flash
    Debug: load_byte(*rv, 847) loaded the value 204 from 847 in ext_flash
    Debug: load_byte(*rv, 848) loaded the value 204 from 848 in ext_flash
    Debug: load_byte(*rv, 849) loaded the value 204 from 849 in ext_flash
    Debug: load_byte(*rv, 850) loaded the value 204 from 850 in ext_flash
    Debug: load_byte(*rv, 851) loaded the value 204 from 851 in ext_flash
    Debug: load_byte(*rv, 852) loaded the value 204 from 852 in ext_flash
    Debug: load_byte(*rv, 853) loaded the value 204 from 853 in ext_flash
    Debug: load_byte(*rv, 854) loaded the value 204 from 854 in ext_flash
    Debug: load_byte(*rv, 855) loaded the value 204 from 855 in ext_flash
    Debug: load_byte(*rv, 856) loaded the value 204 from 856 in ext_flash
    Debug: load_byte(*rv, 857) loaded the value 204 from 857 in ext_flash
    Debug: load_byte(*rv, 858) loaded the value 204 from 858 in ext_flash
    Debug: load_byte(*rv, 859) loaded the value 204 from 859 in ext_flash
    Debug: load_byte(*rv, 860) loaded the value 204 from 860 in ext_flash
    Debug: load_byte(*rv, 861) loaded the value 204 from 861 in ext_flash
    Debug: load_byte(*rv, 862) loaded the value 204 from 862 in ext_flash
    Debug: load_byte(*rv, 863) loaded the value 204 from 863 in ext_flash
    Debug: load_byte(*rv, 864) loaded the value 204 from 864 in ext_flash
    Debug: load_byte(*rv, 865) loaded the value 204 from 865 in ext_flash
    Debug: load_byte(*rv, 866) loaded the value 204 from 866 in ext_flash
    Debug: load_byte(*rv, 867) loaded the value 204 from 867 in ext_flash
    Debug: load_byte(*rv, 868) loaded the value 204 from 868 in ext_flash
    Debug: load_byte(*rv, 869) loaded the value 204 from 869 in ext_flash
    Debug: load_byte(*rv, 870) loaded the value 204 from 870 in ext_flash
    Debug: load_byte(*rv, 871) loaded the value 204 from 871 in ext_flash
    Debug: load_byte(*rv, 872) loaded the value 204 from 872 in ext_flash
    Debug: load_byte(*rv, 873) loaded the value 204 from 873 in ext_flash
    Debug: load_byte(*rv, 874) loaded the value 204 from 874 in ext_flash
    Debug: load_byte(*rv, 875) loaded the value 204 from 875 in ext_flash
    Debug: load_byte(*rv, 876) loaded the value 204 from 876 in ext_flash
    Debug: load_byte(*rv, 877) loaded the value 204 from 877 in ext_flash
    Debug: load_byte(*rv, 878) loaded the value 204 from 878 in ext_flash
    Debug: load_byte(*rv, 879) loaded the value 204 from 879 in ext_flash
    Debug: load_byte(*rv, 880) loaded the value 204 from 880 in ext_flash
    Debug: load_byte(*rv, 881) loaded the value 204 from 881 in ext_flash
    Debug: load_byte(*rv, 882) loaded the value 204 from 882 in ext_flash
    Debug: load_byte(*rv, 883) loaded the value 204 from 883 in ext_flash
    Debug: load_byte(*rv, 884) loaded the value 204 from 884 in ext_flash
    Debug: load_byte(*rv, 885) loaded the value 204 from 885 in ext_flash
    Debug: load_byte(*rv, 886) loaded the value 204 from 886 in ext_flash
    Debug: load_byte(*rv, 887) loaded the value 204 from 887 in ext_flash
    Debug: load_byte(*rv, 888) loaded the value 204 from 888 in ext_flash
    Debug: load_byte(*rv, 889) loaded the value 204 from 889 in ext_flash
    Debug: load_byte(*rv, 890) loaded the value 204 from 890 in ext_flash
    Debug: load_byte(*rv, 891) loaded the value 204 from 891 in ext_flash
    Debug: load_byte(*rv, 892) loaded the value 204 from 892 in ext_flash
    Debug: load_byte(*rv, 893) loaded the value 204 from 893 in ext_flash
    Debug: load_byte(*rv, 894) loaded the value 204 from 894 in ext_flash
    Debug: load_byte(*rv, 895) loaded the value 204 from 895 in ext_flash
    Debug: load_byte(*rv, 896) loaded the value 204 from 896 in ext_flash
    Debug: load_byte(*rv, 897) loaded the value 204 from 897 in ext_flash
    Debug: load_byte(*rv, 898) loaded the value 204 from 898 in ext_flash
    Debug: load_byte(*rv, 899) loaded the value 204 from 899 in ext_flash
    Debug: load_byte(*rv, 900) loaded the value 204 from 900 in ext_flash
    Debug: load_byte(*rv, 901) loaded the value 204 from 901 in ext_flash
    Debug: load_byte(*rv, 902) loaded the value 204 from 902 in ext_flash
    Debug: load_byte(*rv, 903) loaded the value 204 from 903 in ext_flash
    Debug: load_byte(*rv, 904) loaded the value 204 from 904 in ext_flash
    Debug: load_byte(*rv, 905) loaded the value 204 from 905 in ext_flash
    Debug: load_byte(*rv, 906) loaded the value 204 from 906 in ext_flash
    Debug: load_byte(*rv, 907) loaded the value 204 from 907 in ext_flash
    Debug: load_byte(*rv, 908) loaded the value 204 from 908 in ext_flash
    Debug: load_byte(*rv, 909) loaded the value 204 from 909 in ext_flash
    Debug: load_byte(*rv, 910) loaded the value 204 from 910 in ext_flash
    Debug: load_byte(*rv, 911) loaded the value 204 from 911 in ext_flash
    Debug: load_byte(*rv, 912) loaded the value 204 from 912 in ext_flash
    Debug: load_byte(*rv, 913) loaded the value 204 from 913 in ext_flash
    Debug: load_byte(*rv, 914) loaded the value 204 from 914 in ext_flash
    Debug: load_byte(*rv, 915) loaded the value 204 from 915 in ext_flash
    Debug: load_byte(*rv, 916) loaded the value 204 from 916 in ext_flash
    Debug: load_byte(*rv, 917) loaded the value 204 from 917 in ext_flash
    Debug: load_byte(*rv, 918) loaded the value 204 from 918 in ext_flash
    Debug: load_byte(*rv, 919) loaded the value 204 from 919 in ext_flash
    Debug: load_byte(*rv, 920) loaded the value 204 from 920 in ext_flash
    Debug: load_byte(*rv, 921) loaded the value 204 from 921 in ext_flash
    Debug: load_byte(*rv, 922) loaded the value 204 from 922 in ext_flash
    Debug: load_byte(*rv, 923) loaded the value 204 from 923 in ext_flash
    Debug: load_byte(*rv, 924) loaded the value 204 from 924 in ext_flash
    Debug: load_byte(*rv, 925) loaded the value 204 from 925 in ext_flash
    Debug: load_byte(*rv, 926) loaded the value 204 from 926 in ext_flash
    Debug: load_byte(*rv, 927) loaded the value 204 from 927 in ext_flash
    Debug: load_byte(*rv, 928) loaded the value 204 from 928 in ext_flash
    Debug: load_byte(*rv, 929) loaded the value 204 from 929 in ext_flash
    Debug: load_byte(*rv, 930) loaded the value 204 from 930 in ext_flash
    Debug: load_byte(*rv, 931) loaded the value 204 from 931 in ext_flash
    Debug: load_byte(*rv, 932) loaded the value 204 from 932 in ext_flash
    Debug: load_byte(*rv, 933) loaded the value 204 from 933 in ext_flash
    Debug: load_byte(*rv, 934) loaded the value 204 from 934 in ext_flash
    Debug: load_byte(*rv, 935) loaded the value 204 from 935 in ext_flash
    Debug: load_byte(*rv, 936) loaded the value 204 from 936 in ext_flash
    Debug: load_byte(*rv, 937) loaded the value 204 from 937 in ext_flash
    Debug: load_byte(*rv, 938) loaded the value 204 from 938 in ext_flash
    Debug: load_byte(*rv, 939) loaded the value 204 from 939 in ext_flash
    Debug: load_byte(*rv, 940) loaded the value 204 from 940 in ext_flash
    Debug: load_byte(*rv, 941) loaded the value 204 from 941 in ext_flash
    Debug: load_byte(*rv, 942) loaded the value 204 from 942 in ext_flash
    Debug: load_byte(*rv, 943) loaded the value 204 from 943 in ext_flash
    Debug: load_byte(*rv, 944) loaded the value 204 from 944 in ext_flash
    Debug: load_byte(*rv, 945) loaded the value 204 from 945 in ext_flash
    Debug: load_byte(*rv, 946) loaded the value 204 from 946 in ext_flash
    Debug: load_byte(*rv, 947) loaded the value 204 from 947 in ext_flash
    Debug: load_byte(*rv, 948) loaded the value 204 from 948 in ext_flash
    Debug: load_byte(*rv, 949) loaded the value 204 from 949 in ext_flash
    Debug: load_byte(*rv, 950) loaded the value 204 from 950 in ext_flash
    Debug: load_byte(*rv, 951) loaded the value 204 from 951 in ext_flash
    Debug: load_byte(*rv, 952) loaded the value 204 from 952 in ext_flash
    Debug: load_byte(*rv, 953) loaded the value 204 from 953 in ext_flash
    Debug: load_byte(*rv, 954) loaded the value 204 from 954 in ext_flash
    Debug: load_byte(*rv, 955) loaded the value 204 from 955 in ext_flash
    Debug: load_byte(*rv, 956) loaded the value 204 from 956 in ext_flash
    Debug: load_byte(*rv, 957) loaded the value 204 from 957 in ext_flash
    Debug: load_byte(*rv, 958) loaded the value 204 from 958 in ext_flash
    Debug: load_byte(*rv, 959) loaded the value 204 from 959 in ext_flash
    Debug: load_byte(*rv, 960) loaded the value 204 from 960 in ext_flash
    Debug: load_byte(*rv, 961) loaded the value 204 from 961 in ext_flash
    Debug: load_byte(*rv, 962) loaded the value 204 from 962 in ext_flash
    Debug: load_byte(*rv, 963) loaded the value 204 from 963 in ext_flash
    Debug: load_byte(*rv, 964) loaded the value 204 from 964 in ext_flash
    Debug: load_byte(*rv, 965) loaded the value 204 from 965 in ext_flash
    Debug: load_byte(*rv, 966) loaded the value 204 from 966 in ext_flash
    Debug: load_byte(*rv, 967) loaded the value 204 from 967 in ext_flash
    Debug: load_byte(*rv, 968) loaded the value 204 from 968 in ext_flash
    Debug: load_byte(*rv, 969) loaded the value 204 from 969 in ext_flash
    Debug: load_byte(*rv, 970) loaded the value 204 from 970 in ext_flash
    Debug: load_byte(*rv, 971) loaded the value 204 from 971 in ext_flash
    Debug: load_byte(*rv, 972) loaded the value 204 from 972 in ext_flash
    Debug: load_byte(*rv, 973) loaded the value 204 from 973 in ext_flash
    Debug: load_byte(*rv, 974) loaded the value 204 from 974 in ext_flash
    Debug: load_byte(*rv, 975) loaded the value 204 from 975 in ext_flash
    Debug: load_byte(*rv, 976) loaded the value 204 from 976 in ext_flash
    Debug: load_byte(*rv, 977) loaded the value 204 from 977 in ext_flash
    Debug: load_byte(*rv, 978) loaded the value 204 from 978 in ext_flash
    Debug: load_byte(*rv, 979) loaded the value 204 from 979 in ext_flash
    Debug: load_byte(*rv, 980) loaded the value 204 from 980 in ext_flash
    Debug: load_byte(*rv, 981) loaded the value 204 from 981 in ext_flash
    Debug: load_byte(*rv, 982) loaded the value 204 from 982 in ext_flash
    Debug: load_byte(*rv, 983) loaded the value 204 from 983 in ext_flash
    Debug: load_byte(*rv, 984) loaded the value 204 from 984 in ext_flash
    Debug: load_byte(*rv, 985) loaded the value 204 from 985 in ext_flash
    Debug: load_byte(*rv, 986) loaded the value 204 from 986 in ext_flash
    Debug: load_byte(*rv, 987) loaded the value 204 from 987 in ext_flash
    Debug: load_byte(*rv, 988) loaded the value 204 from 988 in ext_flash
    Debug: load_byte(*rv, 989) loaded the value 204 from 989 in ext_flash
    Debug: load_byte(*rv, 990) loaded the value 204 from 990 in ext_flash
    Debug: load_byte(*rv, 991) loaded the value 204 from 991 in ext_flash
    Debug: load_byte(*rv, 992) loaded the value 204 from 992 in ext_flash
    Debug: load_byte(*rv, 993) loaded the value 204 from 993 in ext_flash
    Debug: load_byte(*rv, 994) loaded the value 204 from 994 in ext_flash
    Debug: load_byte(*rv, 995) loaded the value 204 from 995 in ext_flash
    Debug: load_byte(*rv, 996) loaded the value 204 from 996 in ext_flash
    Debug: load_byte(*rv, 997) loaded the value 204 from 997 in ext_flash
    Debug: load_byte(*rv, 998) loaded the value 204 from 998 in ext_flash
    Debug: load_byte(*rv, 999) loaded the value 204 from 999 in ext_flash
    Debug: load_byte(*rv, 1000) loaded the value 0 from 1000 in ext_flash
    Debug: load_byte(*rv, 1001) loaded the value 64 from 1001 in ext_flash
    Debug: load_byte(*rv, 1002) loaded the value 64 from 1002 in ext_flash
    Debug: load_byte(*rv, 1003) loaded the value 64 from 1003 in ext_flash
    Debug: load_byte(*rv, 1004) loaded the value 64 from 1004 in ext_flash
    Debug: load_byte(*rv, 1005) loaded the value 64 from 1005 in ext_flash
    Debug: load_byte(*rv, 1006) loaded the value 64 from 1006 in ext_flash
    Debug: load_byte(*rv, 1007) loaded the value 64 from 1007 in ext_flash
    Debug: load_byte(*rv, 1008) loaded the value 64 from 1008 in ext_flash
    Debug: load_byte(*rv, 1009) loaded the value 64 from 1009 in ext_flash
    Debug: load_byte(*rv, 1010) loaded the value 64 from 1010 in ext_flash
    Debug: load_byte(*rv, 1011) loaded the value 64 from 1011 in ext_flash
    Debug: load_byte(*rv, 1012) loaded the value 64 from 1012 in ext_flash
    Debug: load_byte(*rv, 1013) loaded the value 64 from 1013 in ext_flash
    Debug: load_byte(*rv, 1014) loaded the value 64 from 1014 in ext_flash
    Debug: load_byte(*rv, 1015) loaded the value 64 from 1015 in ext_flash
    Debug: load_byte(*rv, 1016) loaded the value 64 from 1016 in ext_flash
    Debug: load_byte(*rv, 1017) loaded the value 64 from 1017 in ext_flash
    Debug: load_byte(*rv, 1018) loaded the value 64 from 1018 in ext_flash
    Debug: load_byte(*rv, 1019) loaded the value 64 from 1019 in ext_flash
    Debug: load_byte(*rv, 1020) loaded the value 64 from 1020 in ext_flash
    Debug: load_byte(*rv, 1021) loaded the value 64 from 1021 in ext_flash
    Debug: load_byte(*rv, 1022) loaded the value 64 from 1022 in ext_flash
    Debug: load_byte(*rv, 1023) loaded the value 64 from 1023 in ext_flash
    Debug: load_byte(*rv, 1024) loaded the value 204 from 1024 in ext_flash
    Debug: load_byte(*rv, 1025) loaded the value 204 from 1025 in ext_flash
    Debug: load_byte(*rv, 1026) loaded the value 204 from 1026 in ext_flash
    Debug: load_byte(*rv, 1027) loaded the value 204 from 1027 in ext_flash
    Debug: load_byte(*rv, 1028) loaded the value 204 from 1028 in ext_flash
    Debug: load_byte(*rv, 1029) loaded the value 204 from 1029 in ext_flash
    Debug: load_byte(*rv, 1030) loaded the value 204 from 1030 in ext_flash
    Debug: load_byte(*rv, 1031) loaded the value 204 from 1031 in ext_flash
    Debug: load_byte(*rv, 1032) loaded the value 204 from 1032 in ext_flash
    Debug: load_byte(*rv, 1033) loaded the value 204 from 1033 in ext_flash
    Debug: load_byte(*rv, 1034) loaded the value 204 from 1034 in ext_flash
    Debug: load_byte(*rv, 1035) loaded the value 204 from 1035 in ext_flash
    Debug: load_byte(*rv, 1036) loaded the value 204 from 1036 in ext_flash
    Debug: load_byte(*rv, 1037) loaded the value 204 from 1037 in ext_flash
    Debug: load_byte(*rv, 1038) loaded the value 204 from 1038 in ext_flash
    Debug: load_byte(*rv, 1039) loaded the value 204 from 1039 in ext_flash
    Debug: load_byte(*rv, 1040) loaded the value 204 from 1040 in ext_flash
    Debug: load_byte(*rv, 1041) loaded the value 204 from 1041 in ext_flash
    Debug: load_byte(*rv, 1042) loaded the value 204 from 1042 in ext_flash
    Debug: load_byte(*rv, 1043) loaded the value 204 from 1043 in ext_flash
    Debug: load_byte(*rv, 1044) loaded the value 204 from 1044 in ext_flash
    Debug: load_byte(*rv, 1045) loaded the value 204 from 1045 in ext_flash
    Debug: load_byte(*rv, 1046) loaded the value 204 from 1046 in ext_flash
    Debug: load_byte(*rv, 1047) loaded the value 204 from 1047 in ext_flash
    Debug: load_byte(*rv, 1048) loaded the value 204 from 1048 in ext_flash
    Debug: load_byte(*rv, 1049) loaded the value 204 from 1049 in ext_flash
    Debug: load_byte(*rv, 1050) loaded the value 204 from 1050 in ext_flash
    Debug: load_byte(*rv, 1051) loaded the value 204 from 1051 in ext_flash
    Debug: load_byte(*rv, 1052) loaded the value 204 from 1052 in ext_flash
    Debug: load_byte(*rv, 1053) loaded the value 204 from 1053 in ext_flash
    Debug: load_byte(*rv, 1054) loaded the value 204 from 1054 in ext_flash
    Debug: load_byte(*rv, 1055) loaded the value 204 from 1055 in ext_flash
    Debug: load_byte(*rv, 1056) loaded the value 204 from 1056 in ext_flash
    Debug: load_byte(*rv, 1057) loaded the value 204 from 1057 in ext_flash
    Debug: load_byte(*rv, 1058) loaded the value 204 from 1058 in ext_flash
    Debug: load_byte(*rv, 1059) loaded the value 204 from 1059 in ext_flash
    Debug: load_byte(*rv, 1060) loaded the value 204 from 1060 in ext_flash
    Debug: load_byte(*rv, 1061) loaded the value 204 from 1061 in ext_flash
    Debug: load_byte(*rv, 1062) loaded the value 204 from 1062 in ext_flash
    Debug: load_byte(*rv, 1063) loaded the value 204 from 1063 in ext_flash
    Debug: load_byte(*rv, 1064) loaded the value 204 from 1064 in ext_flash
    Debug: load_byte(*rv, 1065) loaded the value 204 from 1065 in ext_flash
    Debug: load_byte(*rv, 1066) loaded the value 204 from 1066 in ext_flash
    Debug: load_byte(*rv, 1067) loaded the value 204 from 1067 in ext_flash
    Debug: load_byte(*rv, 1068) loaded the value 204 from 1068 in ext_flash
    Debug: load_byte(*rv, 1069) loaded the value 204 from 1069 in ext_flash
    Debug: load_byte(*rv, 1070) loaded the value 204 from 1070 in ext_flash
    Debug: load_byte(*rv, 1071) loaded the value 204 from 1071 in ext_flash
    Debug: load_byte(*rv, 1072) loaded the value 204 from 1072 in ext_flash
    Debug: load_byte(*rv, 1073) loaded the value 204 from 1073 in ext_flash
    Debug: load_byte(*rv, 1074) loaded the value 204 from 1074 in ext_flash
    Debug: load_byte(*rv, 1075) loaded the value 204 from 1075 in ext_flash
    Debug: load_byte(*rv, 1076) loaded the value 204 from 1076 in ext_flash
    Debug: load_byte(*rv, 1077) loaded the value 204 from 1077 in ext_flash
    Debug: load_byte(*rv, 1078) loaded the value 204 from 1078 in ext_flash
    Debug: load_byte(*rv, 1079) loaded the value 204 from 1079 in ext_flash
    Debug: load_byte(*rv, 1080) loaded the value 204 from 1080 in ext_flash
    Debug: load_byte(*rv, 1081) loaded the value 204 from 1081 in ext_flash
    Debug: load_byte(*rv, 1082) loaded the value 204 from 1082 in ext_flash
    Debug: load_byte(*rv, 1083) loaded the value 204 from 1083 in ext_flash
    Debug: load_byte(*rv, 1084) loaded the value 204 from 1084 in ext_flash
    Debug: load_byte(*rv, 1085) loaded the value 204 from 1085 in ext_flash
    Debug: load_byte(*rv, 1086) loaded the value 204 from 1086 in ext_flash
    Debug: load_byte(*rv, 1087) loaded the value 204 from 1087 in ext_flash
    Debug: load_byte(*rv, 1088) loaded the value 204 from 1088 in ext_flash
    Debug: load_byte(*rv, 1089) loaded the value 204 from 1089 in ext_flash
    Debug: load_byte(*rv, 1090) loaded the value 204 from 1090 in ext_flash
    Debug: load_byte(*rv, 1091) loaded the value 204 from 1091 in ext_flash
    Debug: load_byte(*rv, 1092) loaded the value 204 from 1092 in ext_flash
    Debug: load_byte(*rv, 1093) loaded the value 204 from 1093 in ext_flash
    Debug: load_byte(*rv, 1094) loaded the value 204 from 1094 in ext_flash
    Debug: load_byte(*rv, 1095) loaded the value 204 from 1095 in ext_flash
    Debug: load_byte(*rv, 1096) loaded the value 204 from 1096 in ext_flash
    Debug: load_byte(*rv, 1097) loaded the value 204 from 1097 in ext_flash
    Debug: load_byte(*rv, 1098) loaded the value 204 from 1098 in ext_flash
    Debug: load_byte(*rv, 1099) loaded the value 204 from 1099 in ext_flash
    Debug: load_byte(*rv, 1100) loaded the value 204 from 1100 in ext_flash
    Debug: load_byte(*rv, 1101) loaded the value 204 from 1101 in ext_flash
    Debug: load_byte(*rv, 1102) loaded the value 204 from 1102 in ext_flash
    Debug: load_byte(*rv, 1103) loaded the value 204 from 1103 in ext_flash
    Debug: load_byte(*rv, 1104) loaded the value 204 from 1104 in ext_flash
    Debug: load_byte(*rv, 1105) loaded the value 204 from 1105 in ext_flash
    Debug: load_byte(*rv, 1106) loaded the value 204 from 1106 in ext_flash
    Debug: load_byte(*rv, 1107) loaded the value 204 from 1107 in ext_flash
    Debug: load_byte(*rv, 1108) loaded the value 204 from 1108 in ext_flash
    Debug: load_byte(*rv, 1109) loaded the value 204 from 1109 in ext_flash
    Debug: load_byte(*rv, 1110) loaded the value 204 from 1110 in ext_flash
    Debug: load_byte(*rv, 1111) loaded the value 204 from 1111 in ext_flash
    Debug: load_byte(*rv, 1112) loaded the value 204 from 1112 in ext_flash
    Debug: load_byte(*rv, 1113) loaded the value 204 from 1113 in ext_flash
    Debug: load_byte(*rv, 1114) loaded the value 204 from 1114 in ext_flash
    Debug: load_byte(*rv, 1115) loaded the value 204 from 1115 in ext_flash
    Debug: load_byte(*rv, 1116) loaded the value 204 from 1116 in ext_flash
    Debug: load_byte(*rv, 1117) loaded the value 204 from 1117 in ext_flash
    Debug: load_byte(*rv, 1118) loaded the value 204 from 1118 in ext_flash
    Debug: load_byte(*rv, 1119) loaded the value 204 from 1119 in ext_flash
    Debug: load_byte(*rv, 1120) loaded the value 204 from 1120 in ext_flash
    Debug: load_byte(*rv, 1121) loaded the value 204 from 1121 in ext_flash
    Debug: load_byte(*rv, 1122) loaded the value 204 from 1122 in ext_flash
    Debug: load_byte(*rv, 1123) loaded the value 204 from 1123 in ext_flash
    Debug: load_byte(*rv, 1124) loaded the value 204 from 1124 in ext_flash
    Debug: load_byte(*rv, 1125) loaded the value 204 from 1125 in ext_flash
    Debug: load_byte(*rv, 1126) loaded the value 204 from 1126 in ext_flash
    Debug: load_byte(*rv, 1127) loaded the value 204 from 1127 in ext_flash
    Debug: load_byte(*rv, 1128) loaded the value 204 from 1128 in ext_flash
    Debug: load_byte(*rv, 1129) loaded the value 204 from 1129 in ext_flash
    Debug: load_byte(*rv, 1130) loaded the value 204 from 1130 in ext_flash
    Debug: load_byte(*rv, 1131) loaded the value 204 from 1131 in ext_flash
    Debug: load_byte(*rv, 1132) loaded the value 204 from 1132 in ext_flash
    Debug: load_byte(*rv, 1133) loaded the value 204 from 1133 in ext_flash
    Debug: load_byte(*rv, 1134) loaded the value 204 from 1134 in ext_flash
    Debug: load_byte(*rv, 1135) loaded the value 204 from 1135 in ext_flash
    Debug: load_byte(*rv, 1136) loaded the value 204 from 1136 in ext_flash
    Debug: load_byte(*rv, 1137) loaded the value 204 from 1137 in ext_flash
    Debug: load_byte(*rv, 1138) loaded the value 204 from 1138 in ext_flash
    Debug: load_byte(*rv, 1139) loaded the value 204 from 1139 in ext_flash
    Debug: load_byte(*rv, 1140) loaded the value 204 from 1140 in ext_flash
    Debug: load_byte(*rv, 1141) loaded the value 204 from 1141 in ext_flash
    Debug: load_byte(*rv, 1142) loaded the value 204 from 1142 in ext_flash
    Debug: load_byte(*rv, 1143) loaded the value 204 from 1143 in ext_flash
    Debug: load_byte(*rv, 1144) loaded the value 204 from 1144 in ext_flash
    Debug: load_byte(*rv, 1145) loaded the value 204 from 1145 in ext_flash
    Debug: load_byte(*rv, 1146) loaded the value 204 from 1146 in ext_flash
    Debug: load_byte(*rv, 1147) loaded the value 204 from 1147 in ext_flash
    Debug: load_byte(*rv, 1148) loaded the value 204 from 1148 in ext_flash
    Debug: load_byte(*rv, 1149) loaded the value 204 from 1149 in ext_flash
    Debug: load_byte(*rv, 1150) loaded the value 204 from 1150 in ext_flash
    Debug: load_byte(*rv, 1151) loaded the value 204 from 1151 in ext_flash
    Debug: load_byte(*rv, 1152) loaded the value 204 from 1152 in ext_flash
    Debug: load_byte(*rv, 1153) loaded the value 204 from 1153 in ext_flash
    Debug: load_byte(*rv, 1154) loaded the value 204 from 1154 in ext_flash
    Debug: load_byte(*rv, 1155) loaded the value 204 from 1155 in ext_flash
    Debug: load_byte(*rv, 1156) loaded the value 204 from 1156 in ext_flash
    Debug: load_byte(*rv, 1157) loaded the value 204 from 1157 in ext_flash
    Debug: load_byte(*rv, 1158) loaded the value 204 from 1158 in ext_flash
    Debug: load_byte(*rv, 1159) loaded the value 204 from 1159 in ext_flash
    Debug: load_byte(*rv, 1160) loaded the value 204 from 1160 in ext_flash
    Debug: load_byte(*rv, 1161) loaded the value 204 from 1161 in ext_flash
    Debug: load_byte(*rv, 1162) loaded the value 204 from 1162 in ext_flash
    Debug: load_byte(*rv, 1163) loaded the value 204 from 1163 in ext_flash
    Debug: load_byte(*rv, 1164) loaded the value 204 from 1164 in ext_flash
    Debug: load_byte(*rv, 1165) loaded the value 204 from 1165 in ext_flash
    Debug: load_byte(*rv, 1166) loaded the value 204 from 1166 in ext_flash
    Debug: load_byte(*rv, 1167) loaded the value 204 from 1167 in ext_flash
    Debug: load_byte(*rv, 1168) loaded the value 204 from 1168 in ext_flash
    Debug: load_byte(*rv, 1169) loaded the value 204 from 1169 in ext_flash
    Debug: load_byte(*rv, 1170) loaded the value 204 from 1170 in ext_flash
    Debug: load_byte(*rv, 1171) loaded the value 204 from 1171 in ext_flash
    Debug: load_byte(*rv, 1172) loaded the value 204 from 1172 in ext_flash
    Debug: load_byte(*rv, 1173) loaded the value 204 from 1173 in ext_flash
    Debug: load_byte(*rv, 1174) loaded the value 204 from 1174 in ext_flash
    Debug: load_byte(*rv, 1175) loaded the value 204 from 1175 in ext_flash
    Debug: load_byte(*rv, 1176) loaded the value 204 from 1176 in ext_flash
    Debug: load_byte(*rv, 1177) loaded the value 204 from 1177 in ext_flash
    Debug: load_byte(*rv, 1178) loaded the value 204 from 1178 in ext_flash
    Debug: load_byte(*rv, 1179) loaded the value 204 from 1179 in ext_flash
    Debug: load_byte(*rv, 1180) loaded the value 204 from 1180 in ext_flash
    Debug: load_byte(*rv, 1181) loaded the value 204 from 1181 in ext_flash
    Debug: load_byte(*rv, 1182) loaded the value 204 from 1182 in ext_flash
    Debug: load_byte(*rv, 1183) loaded the value 204 from 1183 in ext_flash
    Debug: load_byte(*rv, 1184) loaded the value 204 from 1184 in ext_flash
    Debug: load_byte(*rv, 1185) loaded the value 204 from 1185 in ext_flash
    Debug: load_byte(*rv, 1186) loaded the value 204 from 1186 in ext_flash
    Debug: load_byte(*rv, 1187) loaded the value 204 from 1187 in ext_flash
    Debug: load_byte(*rv, 1188) loaded the value 204 from 1188 in ext_flash
    Debug: load_byte(*rv, 1189) loaded the value 204 from 1189 in ext_flash
    Debug: load_byte(*rv, 1190) loaded the value 204 from 1190 in ext_flash
    Debug: load_byte(*rv, 1191) loaded the value 204 from 1191 in ext_flash
    Debug: load_byte(*rv, 1192) loaded the value 204 from 1192 in ext_flash
    Debug: load_byte(*rv, 1193) loaded the value 204 from 1193 in ext_flash
    Debug: load_byte(*rv, 1194) loaded the value 204 from 1194 in ext_flash
    Debug: load_byte(*rv, 1195) loaded the value 204 from 1195 in ext_flash
    Debug: load_byte(*rv, 1196) loaded the value 204 from 1196 in ext_flash
    Debug: load_byte(*rv, 1197) loaded the value 204 from 1197 in ext_flash
    Debug: load_byte(*rv, 1198) loaded the value 204 from 1198 in ext_flash
    Debug: load_byte(*rv, 1199) loaded the value 204 from 1199 in ext_flash
    Debug: load_byte(*rv, 1200) loaded the value 204 from 1200 in ext_flash
    Debug: load_byte(*rv, 1201) loaded the value 204 from 1201 in ext_flash
    Debug: load_byte(*rv, 1202) loaded the value 204 from 1202 in ext_flash
    Debug: load_byte(*rv, 1203) loaded the value 204 from 1203 in ext_flash
    Debug: load_byte(*rv, 1204) loaded the value 204 from 1204 in ext_flash
    Debug: load_byte(*rv, 1205) loaded the value 204 from 1205 in ext_flash
    Debug: load_byte(*rv, 1206) loaded the value 204 from 1206 in ext_flash
    Debug: load_byte(*rv, 1207) loaded the value 204 from 1207 in ext_flash
    Debug: load_byte(*rv, 1208) loaded the value 204 from 1208 in ext_flash
    Debug: load_byte(*rv, 1209) loaded the value 204 from 1209 in ext_flash
    Debug: load_byte(*rv, 1210) loaded the value 204 from 1210 in ext_flash
    Debug: load_byte(*rv, 1211) loaded the value 204 from 1211 in ext_flash
    Debug: load_byte(*rv, 1212) loaded the value 204 from 1212 in ext_flash
    Debug: load_byte(*rv, 1213) loaded the value 204 from 1213 in ext_flash
    Debug: load_byte(*rv, 1214) loaded the value 204 from 1214 in ext_flash
    Debug: load_byte(*rv, 1215) loaded the value 204 from 1215 in ext_flash
    Debug: load_byte(*rv, 1216) loaded the value 204 from 1216 in ext_flash
    Debug: load_byte(*rv, 1217) loaded the value 204 from 1217 in ext_flash
    Debug: load_byte(*rv, 1218) loaded the value 204 from 1218 in ext_flash
    Debug: load_byte(*rv, 1219) loaded the value 204 from 1219 in ext_flash
    Debug: load_byte(*rv, 1220) loaded the value 204 from 1220 in ext_flash
    Debug: load_byte(*rv, 1221) loaded the value 204 from 1221 in ext_flash
    Debug: load_byte(*rv, 1222) loaded the value 204 from 1222 in ext_flash
    Debug: load_byte(*rv, 1223) loaded the value 204 from 1223 in ext_flash
    Debug: load_byte(*rv, 1224) loaded the value 204 from 1224 in ext_flash
    Debug: load_byte(*rv, 1225) loaded the value 204 from 1225 in ext_flash
    Debug: load_byte(*rv, 1226) loaded the value 204 from 1226 in ext_flash
    Debug: load_byte(*rv, 1227) loaded the value 204 from 1227 in ext_flash
    Debug: load_byte(*rv, 1228) loaded the value 204 from 1228 in ext_flash
    Debug: load_byte(*rv, 1229) loaded the value 204 from 1229 in ext_flash
    Debug: load_byte(*rv, 1230) loaded the value 204 from 1230 in ext_flash
    Debug: load_byte(*rv, 1231) loaded the value 204 from 1231 in ext_flash
    Debug: load_byte(*rv, 1232) loaded the value 204 from 1232 in ext_flash
    Debug: load_byte(*rv, 1233) loaded the value 204 from 1233 in ext_flash
    Debug: load_byte(*rv, 1234) loaded the value 204 from 1234 in ext_flash
    Debug: load_byte(*rv, 1235) loaded the value 204 from 1235 in ext_flash
    Debug: load_byte(*rv, 1236) loaded the value 204 from 1236 in ext_flash
    Debug: load_byte(*rv, 1237) loaded the value 204 from 1237 in ext_flash
    Debug: load_byte(*rv, 1238) loaded the value 204 from 1238 in ext_flash
    Debug: load_byte(*rv, 1239) loaded the value 204 from 1239 in ext_flash
    Debug: load_byte(*rv, 1240) loaded the value 204 from 1240 in ext_flash
    Debug: load_byte(*rv, 1241) loaded the value 204 from 1241 in ext_flash
    Debug: load_byte(*rv, 1242) loaded the value 204 from 1242 in ext_flash
    Debug: load_byte(*rv, 1243) loaded the value 204 from 1243 in ext_flash
    Debug: load_byte(*rv, 1244) loaded the value 204 from 1244 in ext_flash
    Debug: load_byte(*rv, 1245) loaded the value 204 from 1245 in ext_flash
    Debug: load_byte(*rv, 1246) loaded the value 204 from 1246 in ext_flash
    Debug: load_byte(*rv, 1247) loaded the value 204 from 1247 in ext_flash
    Debug: load_byte(*rv, 1248) loaded the value 204 from 1248 in ext_flash
    Debug: load_byte(*rv, 1249) loaded the value 204 from 1249 in ext_flash
    Debug: load_byte(*rv, 1250) loaded the value 204 from 1250 in ext_flash
    Debug: load_byte(*rv, 1251) loaded the value 204 from 1251 in ext_flash
    Debug: load_byte(*rv, 1252) loaded the value 204 from 1252 in ext_flash
    Debug: load_byte(*rv, 1253) loaded the value 204 from 1253 in ext_flash
    Debug: load_byte(*rv, 1254) loaded the value 204 from 1254 in ext_flash
    Debug: load_byte(*rv, 1255) loaded the value 204 from 1255 in ext_flash
    Debug: load_byte(*rv, 1256) loaded the value 204 from 1256 in ext_flash
    Debug: load_byte(*rv, 1257) loaded the value 204 from 1257 in ext_flash
    Debug: load_byte(*rv, 1258) loaded the value 204 from 1258 in ext_flash
    Debug: load_byte(*rv, 1259) loaded the value 204 from 1259 in ext_flash
    Debug: load_byte(*rv, 1260) loaded the value 204 from 1260 in ext_flash
    Debug: load_byte(*rv, 1261) loaded the value 204 from 1261 in ext_flash
    Debug: load_byte(*rv, 1262) loaded the value 204 from 1262 in ext_flash
    Debug: load_byte(*rv, 1263) loaded the value 204 from 1263 in ext_flash
    Debug: load_byte(*rv, 1264) loaded the value 204 from 1264 in ext_flash
    Debug: load_byte(*rv, 1265) loaded the value 204 from 1265 in ext_flash
    Debug: load_byte(*rv, 1266) loaded the value 204 from 1266 in ext_flash
    Debug: load_byte(*rv, 1267) loaded the value 204 from 1267 in ext_flash
    Debug: load_byte(*rv, 1268) loaded the value 204 from 1268 in ext_flash
    Debug: load_byte(*rv, 1269) loaded the value 204 from 1269 in ext_flash
    Debug: load_byte(*rv, 1270) loaded the value 204 from 1270 in ext_flash
    Debug: load_byte(*rv, 1271) loaded the value 204 from 1271 in ext_flash
    Debug: load_byte(*rv, 1272) loaded the value 204 from 1272 in ext_flash
    Debug: load_byte(*rv, 1273) loaded the value 204 from 1273 in ext_flash
    Debug: load_byte(*rv, 1274) loaded the value 204 from 1274 in ext_flash
    Debug: load_byte(*rv, 1275) loaded the value 204 from 1275 in ext_flash
    Debug: load_byte(*rv, 1276) loaded the value 204 from 1276 in ext_flash
    Debug: load_byte(*rv, 1277) loaded the value 204 from 1277 in ext_flash
    Debug: load_byte(*rv, 1278) loaded the value 204 from 1278 in ext_flash
    Debug: load_byte(*rv, 1279) loaded the value 204 from 1279 in ext_flash
    Debug: load_byte(*rv, 1280) loaded the value 204 from 1280 in ext_flash
    Debug: load_byte(*rv, 1281) loaded the value 204 from 1281 in ext_flash
    Debug: load_byte(*rv, 1282) loaded the value 204 from 1282 in ext_flash
    Debug: load_byte(*rv, 1283) loaded the value 204 from 1283 in ext_flash
    Debug: load_byte(*rv, 1284) loaded the value 204 from 1284 in ext_flash
    Debug: load_byte(*rv, 1285) loaded the value 204 from 1285 in ext_flash
    Debug: load_byte(*rv, 1286) loaded the value 204 from 1286 in ext_flash
    Debug: load_byte(*rv, 1287) loaded the value 204 from 1287 in ext_flash
    Debug: load_byte(*rv, 1288) loaded the value 204 from 1288 in ext_flash
    Debug: load_byte(*rv, 1289) loaded the value 204 from 1289 in ext_flash
    Debug: load_byte(*rv, 1290) loaded the value 204 from 1290 in ext_flash
    Debug: load_byte(*rv, 1291) loaded the value 204 from 1291 in ext_flash
    Debug: load_byte(*rv, 1292) loaded the value 204 from 1292 in ext_flash
    Debug: load_byte(*rv, 1293) loaded the value 204 from 1293 in ext_flash
    Debug: load_byte(*rv, 1294) loaded the value 204 from 1294 in ext_flash
    Debug: load_byte(*rv, 1295) loaded the value 204 from 1295 in ext_flash
    Debug: load_byte(*rv, 1296) loaded the value 204 from 1296 in ext_flash
    Debug: load_byte(*rv, 1297) loaded the value 204 from 1297 in ext_flash
    Debug: load_byte(*rv, 1298) loaded the value 204 from 1298 in ext_flash
    Debug: load_byte(*rv, 1299) loaded the value 204 from 1299 in ext_flash

  • I tested write byte 0xCC and read back said value on CC1350 LaunchPad with the ext-flash library, image size 4096 and offsett 0. Read back no corrupt bytes. It could be your physical external flash is failing/damaged/corrupted, and if so you have to replace the physical component with a new one.

    If you have a second CC1350 on hand try to run the same code on that device to see if you experience the same kind of corruption.

  • I'm afraid the 2nd board shown another weird behavior ...  I modified the code and found the rate a failing read changed:

    bool save_byte(UBYTE byte, UDOUBLE addr)
    {
        bool success;
        success = ext_flash_init(NULL); clock_delay_usec(10000);
        success = ext_flash_open(NULL); clock_delay_usec(10000);
        if (!success) {
            printf("Could not open flash to read byte addr %lu\n", addr);
            return success;
        }
        success = ext_flash_write(NULL, addr, sizeof(UBYTE), (uint8_t *)&byte); clock_delay_usec(10000);
        if (!success) {
            printf("Error writing byte\n");
            return success;
        }
        success = ext_flash_close(NULL); clock_delay_usec(10000);
        watchdog_periodic();
    
        Debug("save_byte(%d, %lu) saved the value %d to %lu in ext_flash\n", byte, addr, byte, addr);
        return true;
    }
    
    bool load_byte(UBYTE *rv, UDOUBLE addr)
    {
         UBYTE buf;
         bool success;
         success = ext_flash_init(NULL); clock_delay_usec(10000);
         success = ext_flash_open(NULL); clock_delay_usec(10000);
         if (!success) {
             printf("Could not open flash to read byte addr %lu\n", addr);
             return success;
         }
         success = ext_flash_read(NULL, addr, sizeof(buf), (uint8_t *)&buf); clock_delay_usec(10000);
         if (!success) {
             printf("Error writing byte\n");
             return success;
         }
         success = ext_flash_close(NULL); clock_delay_usec(10000);
         watchdog_periodic();
    
         *rv = buf;
         Debug("load_byte(*rv, %lu) loaded the value %d from %lu in ext_flash\n", addr, buf, addr);
    
        return success;
    }

    ebug: save_byte(155, 2000) saved the value 155 to 2000 in ext_flash
    Debug: save_byte(155, 2001) saved the value 155 to 2001 in ext_flash
    Debug: save_byte(155, 2002) saved the value 155 to 2002 in ext_flash
    Debug: save_byte(155, 2003) saved the value 155 to 2003 in ext_flash
    Debug: save_byte(155, 2004) saved the value 155 to 2004 in ext_flash
    Debug: save_byte(155, 2005) saved the value 155 to 2005 in ext_flash
    Debug: save_byte(155, 2006) saved the value 155 to 2006 in ext_flash
    Debug: save_byte(155, 2007) saved the value 155 to 2007 in ext_flash
    Debug: save_byte(155, 2008) saved the value 155 to 2008 in ext_flash
    Debug: save_byte(155, 2009) saved the value 155 to 2009 in ext_flash
    Debug: save_byte(155, 2010) saved the value 155 to 2010 in ext_flash
    Debug: save_byte(155, 2011) saved the value 155 to 2011 in ext_flash
    Debug: save_byte(155, 2012) saved the value 155 to 2012 in ext_flash
    Debug: save_byte(155, 2013) saved the value 155 to 2013 in ext_flash
    Debug: save_byte(155, 2014) saved the value 155 to 2014 in ext_flash
    Debug: save_byte(155, 2015) saved the value 155 to 2015 in ext_flash
    Debug: save_byte(155, 2016) saved the value 155 to 2016 in ext_flash
    Debug: save_byte(155, 2017) saved the value 155 to 2017 in ext_flash
    Debug: save_byte(155, 2018) saved the value 155 to 2018 in ext_flash
    Debug: save_byte(155, 2019) saved the value 155 to 2019 in ext_flash
    Debug: save_byte(155, 2020) saved the value 155 to 2020 in ext_flash
    Debug: save_byte(155, 2021) saved the value 155 to 2021 in ext_flash
    Debug: save_byte(155, 2022) saved the value 155 to 2022 in ext_flash
    Debug: save_byte(155, 2023) saved the value 155 to 2023 in ext_flash
    Debug: save_byte(155, 2024) saved the value 155 to 2024 in ext_flash
    Debug: save_byte(155, 2025) saved the value 155 to 2025 in ext_flash
    Debug: save_byte(155, 2026) saved the value 155 to 2026 in ext_flash
    Debug: save_byte(155, 2027) saved the value 155 to 2027 in ext_flash
    Debug: save_byte(155, 2028) saved the value 155 to 2028 in ext_flash
    Debug: save_byte(155, 2029) saved the value 155 to 2029 in ext_flash
    Debug: save_byte(155, 2030) saved the value 155 to 2030 in ext_flash
    Debug: save_byte(155, 2031) saved the value 155 to 2031 in ext_flash
    Debug: save_byte(155, 2032) saved the value 155 to 2032 in ext_flash
    Debug: save_byte(155, 2033) saved the value 155 to 2033 in ext_flash
    Debug: save_byte(155, 2034) saved the value 155 to 2034 in ext_flash
    Debug: save_byte(155, 2035) saved the value 155 to 2035 in ext_flash
    Debug: save_byte(155, 2036) saved the value 155 to 2036 in ext_flash
    Debug: save_byte(155, 2037) saved the value 155 to 2037 in ext_flash
    Debug: save_byte(155, 2038) saved the value 155 to 2038 in ext_flash
    Debug: save_byte(155, 2039) saved the value 155 to 2039 in ext_flash
    Debug: save_byte(155, 2040) saved the value 155 to 2040 in ext_flash
    Debug: save_byte(155, 2041) saved the value 155 to 2041 in ext_flash
    Debug: save_byte(155, 2042) saved the value 155 to 2042 in ext_flash
    Debug: save_byte(155, 2043) saved the value 155 to 2043 in ext_flash
    Debug: save_byte(155, 2044) saved the value 155 to 2044 in ext_flash
    Debug: save_byte(155, 2045) saved the value 155 to 2045 in ext_flash
    Debug: save_byte(155, 2046) saved the value 155 to 2046 in ext_flash
    Debug: save_byte(155, 2047) saved the value 155 to 2047 in ext_flash
    Debug: save_byte(155, 2048) saved the value 155 to 2048 in ext_flash
    Debug: save_byte(155, 2049) saved the value 155 to 2049 in ext_flash
    Debug: save_byte(155, 2050) saved the value 155 to 2050 in ext_flash
    Debug: save_byte(155, 2051) saved the value 155 to 2051 in ext_flash
    Debug: save_byte(155, 2052) saved the value 155 to 2052 in ext_flash
    Debug: save_byte(155, 2053) saved the value 155 to 2053 in ext_flash
    Debug: save_byte(155, 2054) saved the value 155 to 2054 in ext_flash
    Debug: save_byte(155, 2055) saved the value 155 to 2055 in ext_flash
    Debug: save_byte(155, 2056) saved the value 155 to 2056 in ext_flash
    Debug: save_byte(155, 2057) saved the value 155 to 2057 in ext_flash
    Debug: save_byte(155, 2058) saved the value 155 to 2058 in ext_flash
    Debug: save_byte(155, 2059) saved the value 155 to 2059 in ext_flash

    Debug: load_byte(*rv, 2000) loaded the value 0 from 2000 in ext_flash
    Debug: load_byte(*rv, 2001) loaded the value 1 from 2001 in ext_flash
    Debug: load_byte(*rv, 2002) loaded the value 2 from 2002 in ext_flash
    Debug: load_byte(*rv, 2003) loaded the value 3 from 2003 in ext_flash
    Debug: load_byte(*rv, 2004) loaded the value 0 from 2004 in ext_flash
    Debug: load_byte(*rv, 2005) loaded the value 1 from 2005 in ext_flash
    Debug: load_byte(*rv, 2006) loaded the value 2 from 2006 in ext_flash
    Debug: load_byte(*rv, 2007) loaded the value 3 from 2007 in ext_flash
    Debug: load_byte(*rv, 2008) loaded the value 8 from 2008 in ext_flash
    Debug: load_byte(*rv, 2009) loaded the value 9 from 2009 in ext_flash
    Debug: load_byte(*rv, 2010) loaded the value 10 from 2010 in ext_flash
    Debug: load_byte(*rv, 2011) loaded the value 11 from 2011 in ext_flash
    Debug: load_byte(*rv, 2012) loaded the value 8 from 2012 in ext_flash
    Debug: load_byte(*rv, 2013) loaded the value 9 from 2013 in ext_flash
    Debug: load_byte(*rv, 2014) loaded the value 10 from 2014 in ext_flash
    Debug: load_byte(*rv, 2015) loaded the value 11 from 2015 in ext_flash
    Debug: load_byte(*rv, 2016) loaded the value 0 from 2016 in ext_flash
    Debug: load_byte(*rv, 2017) loaded the value 155 from 2017 in ext_flash
    Debug: load_byte(*rv, 2018) loaded the value 155 from 2018 in ext_flash
    Debug: load_byte(*rv, 2019) loaded the value 155 from 2019 in ext_flash
    Debug: load_byte(*rv, 2020) loaded the value 155 from 2020 in ext_flash
    Debug: load_byte(*rv, 2021) loaded the value 155 from 2021 in ext_flash
    Debug: load_byte(*rv, 2022) loaded the value 155 from 2022 in ext_flash
    Debug: load_byte(*rv, 2023) loaded the value 155 from 2023 in ext_flash
    Debug: load_byte(*rv, 2024) loaded the value 136 from 2024 in ext_flash
    Debug: load_byte(*rv, 2025) loaded the value 155 from 2025 in ext_flash
    Debug: load_byte(*rv, 2026) loaded the value 155 from 2026 in ext_flash
    Debug: load_byte(*rv, 2027) loaded the value 155 from 2027 in ext_flash
    Debug: load_byte(*rv, 2028) loaded the value 155 from 2028 in ext_flash
    Debug: load_byte(*rv, 2029) loaded the value 155 from 2029 in ext_flash
    Debug: load_byte(*rv, 2030) loaded the value 155 from 2030 in ext_flash
    Debug: load_byte(*rv, 2031) loaded the value 155 from 2031 in ext_flash
    Debug: load_byte(*rv, 2032) loaded the value 136 from 2032 in ext_flash
    Debug: load_byte(*rv, 2033) loaded the value 155 from 2033 in ext_flash
    Debug: load_byte(*rv, 2034) loaded the value 155 from 2034 in ext_flash
    Debug: load_byte(*rv, 2035) loaded the value 155 from 2035 in ext_flash
    Debug: load_byte(*rv, 2036) loaded the value 155 from 2036 in ext_flash
    Debug: load_byte(*rv, 2037) loaded the value 155 from 2037 in ext_flash
    Debug: load_byte(*rv, 2038) loaded the value 155 from 2038 in ext_flash
    Debug: load_byte(*rv, 2039) loaded the value 155 from 2039 in ext_flash
    Debug: load_byte(*rv, 2040) loaded the value 136 from 2040 in ext_flash
    Debug: load_byte(*rv, 2041) loaded the value 155 from 2041 in ext_flash
    Debug: load_byte(*rv, 2042) loaded the value 155 from 2042 in ext_flash
    Debug: load_byte(*rv, 2043) loaded the value 155 from 2043 in ext_flash
    Debug: load_byte(*rv, 2044) loaded the value 155 from 2044 in ext_flash
    Debug: load_byte(*rv, 2045) loaded the value 155 from 2045 in ext_flash
    Debug: load_byte(*rv, 2046) loaded the value 155 from 2046 in ext_flash
    Debug: load_byte(*rv, 2047) loaded the value 155 from 2047 in ext_flash
    Debug: load_byte(*rv, 2048) loaded the value 136 from 2048 in ext_flash
    Debug: load_byte(*rv, 2049) loaded the value 155 from 2049 in ext_flash
    Debug: load_byte(*rv, 2050) loaded the value 155 from 2050 in ext_flash
    Debug: load_byte(*rv, 2051) loaded the value 155 from 2051 in ext_flash
    Debug: load_byte(*rv, 2052) loaded the value 155 from 2052 in ext_flash
    Debug: load_byte(*rv, 2053) loaded the value 155 from 2053 in ext_flash
    Debug: load_byte(*rv, 2054) loaded the value 155 from 2054 in ext_flash
    Debug: load_byte(*rv, 2055) loaded the value 155 from 2055 in ext_flash
    Debug: load_byte(*rv, 2056) loaded the value 136 from 2056 in ext_flash
    Debug: load_byte(*rv, 2057) loaded the value 155 from 2057 in ext_flash
    Debug: load_byte(*rv, 2058) loaded the value 155 from 2058 in ext_flash
    Debug: load_byte(*rv, 2059) loaded the value 155 from 2059 in ext_flash

    Anything wrong with this code?

  • What is this Debug() function of yours? Is it a synchronous or asynchronous write to the serial line?

  • #if DEBUG
    #define Debug(__info,...) printf("Debug: " __info,##__VA_ARGS__)
    #else
    #define Debug(__info,...)
    #endif

    when I don't define DEBUG, I still see the values wrong (I'm using them on an E-paper,,)

  • Can you send me the .elf file of your executable? I'll run it locally on my LaunchPad.

  • HI Thanks I debugged it and I found I have to erase between each 2 writes .. .this what was causing the issue

    This is my final driver code for reference:

    #include "ext_flash_array.h"
    
    #include <stdio.h>
    #include <stdlib.h>
    #include "ext-flash.h"
    
    bool save_byte(UBYTE byte, UDOUBLE addr)
    {
        if (!ext_flash_write(NULL, addr, 1, (uint8_t *)&byte)) {
            printf("ext_flash_write FAILED");
            return false;
        }
    
        watchdog_periodic();
    
        Debug("save_byte(%d, %lu) saved the value %d to %lu in ext_flash\n", byte, addr, byte, addr);
    
        return true;
    }
    
    
    bool load_byte(UBYTE *buf, UDOUBLE addr)
    {
        if (!ext_flash_read(NULL, addr, 1, buf)) {
            printf("ext_flash_read FAILED\n");
            return false;
        }
    
        watchdog_periodic();
    
        Debug("load_byte(*rv, %lu) loaded the value %d from %lu in ext_flash\n", addr, buf, addr);
    
        return true;
    }
    
    UBYTE* flash_alloc(UDOUBLE size)
    {
        UBYTE num_of_flash_sectors = 0;
    
        if (size / EXT_FLASH_ERASE_SECTOR_SIZE)
            num_of_flash_sectors += (size/EXT_FLASH_ERASE_SECTOR_SIZE);
        // Add 1 sector for the remaining bytes which are less than 1 sector
        if (size % EXT_FLASH_ERASE_SECTOR_SIZE)
            num_of_flash_sectors++;
    
        ext_flash_close(NULL);
    
        if (!ext_flash_init(NULL)) {
            printf("ext_flash_init FAILED");
            return NULL;
        }
    
        if (!ext_flash_open(NULL)) {
            printf("ext_flash_open FAILED");
            return NULL;
        }
    
        // You have to erase between different writes of same location
        if (!ext_flash_erase(NULL, EPD_FLASH_OFFSET, num_of_flash_sectors*EXT_FLASH_ERASE_SECTOR_SIZE)) {
            printf("ext_flash_erase FAILED");
            return NULL;
        }
    
        Debug("%d sectors of external flash were allocated starting from %d ...\n", num_of_flash_sectors, EPD_FLASH_OFFSET);
    
        return (UBYTE*) EPD_FLASH_OFFSET;
    }
    

    Thanks Severin