Maker Pro
Maker Pro

File types?

davenn

Moderator
good Q

am not sure, cant find anything listed anywhere

OK
When you go to upload a file, it shows you a list of all that can be uploaded


file types.JPG

note there's no .bmp in there


cheers
Dave
 
  • Like
Reactions: Ian
It just says 'Custom files' in the file type box for me?
I tried Zip only found PDF that would work.
Also is there no "Code" listing ability?
M.
 

Ian

Administrator
Yep, that list that Dave posted is the extension list - although .zip files are a good failsafe as you can stick anything in one of those :).
 
I had tried a zipped file with the .RAR extension but it did not like that, I guess i will have to remember to Zip it!
M.
 

Harald Kapp

Moderator
Moderator
Some sites have a CODE between square brackets for posting an example of a scroll page for code listing.
This one for e.g. it displays the code in common colour and format.
We have this feature too:
Code:
BANK1 MACRO
        bsf    STATUS, RP0
        ENDM
BANK0 MACRO
        bcf    STATUS, RP0
        ENDM   
;**********************************************************************
        ORG     0x000             ; processor reset vector
        goto    MAIN              ; go to beginning of program


        ORG     0x004             ; interrupt vector location
        movwf   w_temp            ; save off current W register contents
        movf    STATUS,w          ; move status register into W register
        movwf    status_temp       ; save off contents of STATUS register


; isr code can go here or be located as a call subroutine elsewhere
// some foo stuff to make the code longer for the scroll feature to show
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.

// end of foo stuff

        movf    status_temp,w     ; retrieve copy of STATUS register
        movwf    STATUS            ; restore pre-isr STATUS register contents
        swapf   w_temp,f
        swapf   w_temp,w          ; restore pre-isr W register contents
        retfie                    ; return from interrupt

Use Insert... (top row of icons, 7th from right), click, then select Code.
 
  • Like
Reactions: Ian
Top