Maker Pro
Maker Pro

File types?

Minder

Apr 24, 2015
3,478
Joined
Apr 24, 2015
Messages
3,478
What file type are allowed here, list anywhere?
M.
 

davenn

Moderator
Sep 5, 2009
14,262
Joined
Sep 5, 2009
Messages
14,262
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

Minder

Apr 24, 2015
3,478
Joined
Apr 24, 2015
Messages
3,478
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.
 

hevans1944

Hop - AC8NS
Jun 21, 2012
4,882
Joined
Jun 21, 2012
Messages
4,882
I see from your "test" post that you have figured this out.
 

Ian

Administrator
Aug 23, 2006
1,486
Joined
Aug 23, 2006
Messages
1,486
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 :).
 

Minder

Apr 24, 2015
3,478
Joined
Apr 24, 2015
Messages
3,478
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
Nov 17, 2011
13,727
Joined
Nov 17, 2011
Messages
13,727
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