Jeez, now I have problems finding includes in MicroCode Studio. The file pathnames are not right...
Robert
![]()
Jeez, now I have problems finding includes in MicroCode Studio. The file pathnames are not right...
Robert
![]()
My Creality Ender 3 S1 Plus is a giant paperweight that can't even be used as a boat anchor, cause I'd be fined for polluting our waterways with electronic devices.
Not as dumb as yesterday, but stupider than tomorrow!
Well, found the answer to some problems myself.I editted the pathnames in the includes and libs and things work further (added disk and full pathname).
I'm still faced by that deprecate warning, still no idea how to get rid of that.
And then there is one last ERROR[118]: OVERWRITING PREVIOUS ADDRESS at line 50 of the ASM file to figure out.
Robert
:/
Last edited by Demon; - 27th October 2005 at 02:00.
My Creality Ender 3 S1 Plus is a giant paperweight that can't even be used as a boat anchor, cause I'd be fined for polluting our waterways with electronic devices.
Not as dumb as yesterday, but stupider than tomorrow!
Look at that !
http://www.picbasic.co.uk/forum/show...87&postcount=6
for the over writre blah blah just comment the default config fuses in the .INC file in the PBP folder
Last edited by mister_e; - 27th October 2005 at 02:09.
Steve
It's not a bug, it's a random feature.
There's no problem, only learning opportunities.
Ok, this is funky. The 1st thing I did was to go look in the FAQ for help on these issues and I only had 2 threads listed. I just did a SEARCH through the forum and found this thread:
Presetting Configuration Fuses (PIC Defines) into your Program
But if I go look in FAQ again, it's not there, always the same two threads? Anyways, Mister_E posted the answer to why I get the OVERWITE message.
Now if I can just find the answer to those pesky DEPRECATE warnings.
Robert
![]()
My Creality Ender 3 S1 Plus is a giant paperweight that can't even be used as a boat anchor, cause I'd be fined for polluting our waterways with electronic devices.
Not as dumb as yesterday, but stupider than tomorrow!
Thanks Steve.
(don't you hate posting at the same time as someone else?)
Robert
P.S.: STEVE, GET YOURSELF A HOTMAIL ACCOUNT AND EMAIL ME.
My Creality Ender 3 S1 Plus is a giant paperweight that can't even be used as a boat anchor, cause I'd be fined for polluting our waterways with electronic devices.
Not as dumb as yesterday, but stupider than tomorrow!
Mr Demon.. open your eyes i already post a link above ;o)
EDIT: Glad to see you found it! I already have an hotmail account... without ANY KIND OF easy to hack Messenger or whatsoever. Videotron is working now..!
Last edited by Demon; - 4th October 2016 at 18:02.
Steve
It's not a bug, it's a random feature.
There's no problem, only learning opportunities.
Steve, like this? I kept all the values so it is easier to change them around later.
If this is correct, it would make a good addition to one of those Configuration threads in the FAQ.
Robert
![]()
My Creality Ender 3 S1 Plus is a giant paperweight that can't even be used as a boat anchor, cause I'd be fined for polluting our waterways with electronic devices.
Not as dumb as yesterday, but stupider than tomorrow!
Steve, I must have something wrong in the config switches above. The LED is blinking more than twice as fast as it should. This is the test code:
'define LOADER_USED 1
LED1 VAR PortD.1
START: HIGH LED1
PAUSE 1000
LOW LED1
PAUSE 1000
GOTO START
Finish: end
I am using a 20MHz external oscillator. I would like to be able to use slow speed USB on this device later. Do you see something I missed in the config?
Robert
![]()
My Creality Ender 3 S1 Plus is a giant paperweight that can't even be used as a boat anchor, cause I'd be fined for polluting our waterways with electronic devices.
Not as dumb as yesterday, but stupider than tomorrow!
you just need to modify the .INC in the PBP folders. My own file looks like that
not much.. it's the whole file i have.Code:;**************************************************************** ;* 18F4550.INC * ;* * ;* By : Leonard Zerman, Jeff Schmoyer * ;* Notice : Copyright (c) 2004 microEngineering Labs, Inc. * ;* All Rights Reserved * ;* Date : 12/31/04 * ;* Version : 2.46 * ;* Notes : * ;**************************************************************** NOLIST ifdef PM_USED LIST "Error: PM does not support this device. Use MPASM." NOLIST else LIST LIST p = 18F4550, r = dec, w = -311, f = inhx32 INCLUDE "P18F4550.INC" ; MPASM Header ; __CONFIG _CONFIG1L, _PLLDIV_5_1L & _CPUDIV_OSC1_PLL2_1L & _USBDIV_2_1L ; __CONFIG _CONFIG1H, _FOSC_HSPLL_HS_1H ; __CONFIG _CONFIG2H, _WDT_ON_2H & _WDTPS_128_2H ; __CONFIG _CONFIG3H, _PBADEN_OFF_3H ; __CONFIG _CONFIG4L, _LVP_OFF_4L & _ICPRT_OFF_4L & _XINST_OFF_4L NOLIST endif LIST EEPROM_START EQU 0F00000h BLOCK_SIZE EQU 32
Do you still use the Bootloader? Did you also use the DEFINE OSC 20?
How about your current one?
Steve
It's not a bug, it's a random feature.
There's no problem, only learning opportunities.
Bookmarks