Would you like to react to this message? Create an account in a few clicks or log in to continue.

You are not connected. Please login or register

pic12f675 SDCC debuge

2 posters

Go to page : 1, 2, 3  Next

Go down  Message [Page 1 of 3]

1pic12f675 SDCC debuge Empty pic12f675 SDCC debuge Mon Nov 06, 2023 7:20 pm

MedTronic



Dear all my friends
i test the simulide with pic12f675 with sdcc compiler i can write a c code and also after too many trial i can compile and upload hex file to the microcontroller but i can't debuge the code step by step please help me how can i debuge the c source code with simulide

2pic12f675 SDCC debuge Empty Re: pic12f675 SDCC debuge Mon Nov 06, 2023 7:24 pm

MedTronic



https://youtu.be/PW15XMvzcfE
you can see the problem at the video link

3pic12f675 SDCC debuge Empty Re: pic12f675 SDCC debuge Tue Nov 07, 2023 9:25 am

arcachofo

arcachofo

Hi.

Seems that the compilation is not correct:
In the video at 1:17

pic12f675 SDCC debuge Kk28

MedTronic likes this post

4pic12f675 SDCC debuge Empty Re: pic12f675 SDCC debuge Tue Nov 07, 2023 11:43 am

MedTronic



Ok but why ?
and how can i overcom the problem and get debuge the sdcc code stpe by step

5pic12f675 SDCC debuge Empty Re: pic12f675 SDCC debuge Tue Nov 07, 2023 11:51 am

arcachofo

arcachofo

Which command do you use to compile with SDCC compiler without Simulide?

6pic12f675 SDCC debuge Empty Re: pic12f675 SDCC debuge Tue Nov 07, 2023 12:27 pm

MedTronic



arcachofo wrote:Which command do you use to compile with SDCC compiler without Simulide?

i only use SDCC at Simulide , Simulide is a very good simulutor and debugger . and i want to thank you very much for your work

but the problem now i can't debuge the c source code within simulIDE
and note that the code hex file is generated and the simulator run the at microcontroller . but i need to debuge the source code step by step

Best Regards
and too many thanks

7pic12f675 SDCC debuge Empty Re: pic12f675 SDCC debuge Tue Nov 07, 2023 12:38 pm

arcachofo

arcachofo

MedTronic wrote:and note that the code hex file is generated and the simulator run the at microcontroller .
Ok, let's see if we can find what is happening.

Can you do this please:
- Open simulide, open the circuit, open the c file.
- Click on "Debug" button (no compile or upload).
- Copy all the output at the bottom panel and paste here.

8pic12f675 SDCC debuge Empty Re: pic12f675 SDCC debuge Tue Nov 07, 2023 1:29 pm

MedTronic



arcachofo wrote:
MedTronic wrote:and note that the code hex file is generated and the simulator run the at microcontroller .
Ok, let's see if we can find what is happening.

Can you do this please:
- Open simulide, open the circuit, open the c file.
- Click on "Debug" button (no compile or upload).
- Copy all the output at the bottom panel and paste here.

Thank you very much for your fast replay
this is the copy for the output:

SDCC Compiler successfully loaded.

-------------------------------------------------------
File: D:/SimulIDE/SimulIDE-R2036_Win32/SimulIDE-R2036_Win32/examples/Micro/Pic/MedTronic/C_Codes/SDCC/pic12f675/Blink/Blink.c

-------------------------------------------------------
-------------------------------------------------------

Starting Debbuger...

-------------------------------------------------------
Executing:
"D:/SDCC/bin/sdcc" --use-non-free -mpic14 -p12f675 -o"D:/SimulIDE/SimulIDE-R2036_Win32/SimulIDE-R2036_Win32/examples/Micro/Pic/MedTronic/C_Codes/SDCC/pic12f675/Blink/build\" "D:\SimulIDE\SimulIDE-R2036_Win32\SimulIDE-R2036_Win32\examples\Micro\Pic\MedTronic\C_Codes\SDCC\pic12f675\Blink\Blink.c"

D:/SimulIDE/SimulIDE-R2036_Win32/SimulIDE-R2036_Win32/examples/Micro/Pic/MedTronic/C_Codes/SDCC/pic12f675/Blink/build\Blink.asm:84:Message[1304] Page selection not needed for this device. No code generated.
message: Using default linker script "C:\Program Files\gputils\lkr\12f675_g.lkr".
warning: Relocation symbol "_cinit" [0x0000] has no section. (pass 0)
warning: Relocation symbol "_cinit" [0x0004] has no section. (pass 0)
warning: Relocation symbol "_cinit" [0x001E] has no section. (pass 0)
warning: Relocation symbol "_cinit" [0x0022] has no section. (pass 0)
warning: Relocation symbol "_cinit" [0x0000] has no section. (pass 0)
warning: Relocation symbol "_cinit" [0x0004] has no section. (pass 0)
warning: Relocation symbol "_cinit" [0x001E] has no section. (pass 0)
warning: Relocation symbol "_cinit" [0x0022] has no section. (pass 0)
warning: Relocation of section "UDL_idata_0" failed, relocating to a shared memory location.
warning: Relocation of section "IDD_idata_0" failed, relocating to a shared memory location.


FirmWare Uploaded to p12F675-1(p12F675)
D:/SimulIDE/SimulIDE-R2036_Win32/SimulIDE-R2036_Win32/examples/Micro/Pic/MedTronic/C_Codes/SDCC/pic12f675/Blink/build\Blink.hex


Error Starting Debugger

9pic12f675 SDCC debuge Empty Re: pic12f675 SDCC debuge Tue Nov 07, 2023 1:35 pm

MedTronic




and thise is a vedio for your asking test

10pic12f675 SDCC debuge Empty Re: pic12f675 SDCC debuge Tue Nov 07, 2023 1:54 pm

arcachofo

arcachofo

Thanks.
I think you need to use a compiler configuration specific for PICs.
But you probably need to install gputils.

To add the new compiler:
- Create a file sdcc-pic.xml in: data/codeeditor/compilers/compilers/

With this content:
Code:
<!DOCTYPE SimulIDE>

<compiler name="SDCC-PIC" type="sdcc" buildPath="build" >
 Â   <step
 Â       command="sdcc"
 Â       arguments=" --use-non-free -m$family -p$device -o$buildPath $filePath"
 Â   />
</compiler>

Then open simulide, open your c file, choose the new compiler SDDC-PIC and configure the compiler like the image below (with your tool path).
Then press "Debug" and see if the output is different.

pic12f675 SDCC debuge Kk30

11pic12f675 SDCC debuge Empty Re: pic12f675 SDCC debuge Tue Nov 07, 2023 2:17 pm

MedTronic



arcachofo wrote:Thanks.
I think you need to use a compiler configuration specific for PICs.
But you probably need to install gputils.

To add the new compiler:
- Create a file sdcc-pic.xml in: data/codeeditor/compilers/compilers/

With this content:
Code:
<!DOCTYPE SimulIDE>

<compiler name="SDCC-PIC" type="sdcc" buildPath="build" >
 Â   <step
 Â       command="sdcc"
 Â       arguments=" --use-non-free -m$family -p$device -o$buildPath $filePath"
 Â   />
</compiler>

Then open simulide, open your c file, choose the new compiler SDDC-PIC and configure the compiler like the image below (with your tool path).
Then press "Debug" and see if the output is different.

pic12f675 SDCC debuge Kk30

Thaks again
now the dubugger is started but i still can't debuge step by step
see the next vedio for more detailes


best regards
MedTronic

12pic12f675 SDCC debuge Empty Re: pic12f675 SDCC debuge Tue Nov 07, 2023 2:21 pm

MedTronic



13pic12f675 SDCC debuge Empty Re: pic12f675 SDCC debuge Tue Nov 07, 2023 2:27 pm

arcachofo

arcachofo

Yes, you need to install gputils:
https://gputils.sourceforge.io/

pic12f675 SDCC debuge Kk32

Or maybe there is another solution:
Can you tell me which files are generated in folder Blink/build ?

14pic12f675 SDCC debuge Empty Re: pic12f675 SDCC debuge Tue Nov 07, 2023 2:34 pm

MedTronic



arcachofo wrote:Yes, you need to install gputils:
https://gputils.sourceforge.io/

pic12f675 SDCC debuge Kk32

Or maybe there is another solution:
Can you tell me which files are generated in folder Blink/build ?

pic12f675 SDCC debuge New_bi11
pic12f675 SDCC debuge New_bi10

15pic12f675 SDCC debuge Empty Re: pic12f675 SDCC debuge Tue Nov 07, 2023 2:36 pm

arcachofo

arcachofo

Ok there is a lst file, maybe we can do without gputils.
But for that I need to see the format of that lst file.

Maybe you can zip that build folder and attach here?

16pic12f675 SDCC debuge Empty Re: pic12f675 SDCC debuge Tue Nov 07, 2023 2:44 pm

MedTronic



my friend i have already a gputils at
C:\Program Files\gputils

and i copy the file you mention "gpvc.exe" at SDCC\bin folder and the same results

please help me

thanks very much

best regards
MedTronic

17pic12f675 SDCC debuge Empty Re: pic12f675 SDCC debuge Tue Nov 07, 2023 2:45 pm

arcachofo

arcachofo

and i copy the file you mention "gpvc.exe" at SDCC\bin folder and the same results
Do you get the message "gpvc executable not detected"?



Last edited by arcachofo on Tue Nov 07, 2023 2:48 pm; edited 1 time in total

18pic12f675 SDCC debuge Empty Re: pic12f675 SDCC debuge Tue Nov 07, 2023 2:48 pm

MedTronic



arcachofo wrote:
and i copy the file you mention "gpvc.exe" at SDCC\bin folder and the same results
Do you get the message "gpvc executable not found"?

no now after coping ... No ther is no that message

19pic12f675 SDCC debuge Empty Re: pic12f675 SDCC debuge Tue Nov 07, 2023 2:48 pm

arcachofo

arcachofo

Then what is the output now?

20pic12f675 SDCC debuge Empty Re: pic12f675 SDCC debuge Tue Nov 07, 2023 2:50 pm

MedTronic



here is all ziped files

21pic12f675 SDCC debuge Empty Re: pic12f675 SDCC debuge Tue Nov 07, 2023 2:50 pm

arcachofo

arcachofo

attachment failed...

22pic12f675 SDCC debuge Empty Re: pic12f675 SDCC debuge Tue Nov 07, 2023 2:51 pm

MedTronic



arcachofo wrote:Then what is the output now?

SDCC-PIC Compiler successfully loaded.

-------------------------------------------------------
File: D:/SimulIDE/SimulIDE-R2036_Win32/SimulIDE-R2036_Win32/examples/Micro/Pic/MedTronic/C_Codes/SDCC/pic12f675/Blink/Blink.c

-------------------------------------------------------
-------------------------------------------------------
Executing:
"D:/SDCC/bin/sdcc" --use-non-free -mpic14 -p12f675 -o"D:/SimulIDE/SimulIDE-R2036_Win32/SimulIDE-R2036_Win32/examples/Micro/Pic/MedTronic/C_Codes/SDCC/pic12f675/Blink/build\" "D:\SimulIDE\SimulIDE-R2036_Win32\SimulIDE-R2036_Win32\examples\Micro\Pic\MedTronic\C_Codes\SDCC\pic12f675\Blink\Blink.c"

D:/SimulIDE/SimulIDE-R2036_Win32/SimulIDE-R2036_Win32/examples/Micro/Pic/MedTronic/C_Codes/SDCC/pic12f675/Blink/build\Blink.asm:84:Message[1304] Page selection not needed for this device. No code generated.
message: Using default linker script "C:\Program Files\gputils\lkr\12f675_g.lkr".
warning: Relocation symbol "_cinit" [0x0000] has no section. (pass 0)
warning: Relocation symbol "_cinit" [0x0004] has no section. (pass 0)
warning: Relocation symbol "_cinit" [0x001E] has no section. (pass 0)
warning: Relocation symbol "_cinit" [0x0022] has no section. (pass 0)
warning: Relocation symbol "_cinit" [0x0000] has no section. (pass 0)
warning: Relocation symbol "_cinit" [0x0004] has no section. (pass 0)
warning: Relocation symbol "_cinit" [0x001E] has no section. (pass 0)
warning: Relocation symbol "_cinit" [0x0022] has no section. (pass 0)
warning: Relocation of section "UDL_idata_0" failed, relocating to a shared memory location.
warning: Relocation of section "IDD_idata_0" failed, relocating to a shared memory location.

-------------------------------------------------------
Executing:
"D:/SDCC/bin/sdcc" --use-non-free -mpic14 -p12f675 -o"D:/SimulIDE/SimulIDE-R2036_Win32/SimulIDE-R2036_Win32/examples/Micro/Pic/MedTronic/C_Codes/SDCC/pic12f675/Blink/build\" "D:\SimulIDE\SimulIDE-R2036_Win32\SimulIDE-R2036_Win32\examples\Micro\Pic\MedTronic\C_Codes\SDCC\pic12f675\Blink\Blink.c"

D:/SimulIDE/SimulIDE-R2036_Win32/SimulIDE-R2036_Win32/examples/Micro/Pic/MedTronic/C_Codes/SDCC/pic12f675/Blink/build\Blink.asm:84:Message[1304] Page selection not needed for this device. No code generated.
message: Using default linker script "C:\Program Files\gputils\lkr\12f675_g.lkr".
warning: Relocation symbol "_cinit" [0x0000] has no section. (pass 0)
warning: Relocation symbol "_cinit" [0x0004] has no section. (pass 0)
warning: Relocation symbol "_cinit" [0x001E] has no section. (pass 0)
warning: Relocation symbol "_cinit" [0x0022] has no section. (pass 0)
warning: Relocation symbol "_cinit" [0x0000] has no section. (pass 0)
warning: Relocation symbol "_cinit" [0x0004] has no section. (pass 0)
warning: Relocation symbol "_cinit" [0x001E] has no section. (pass 0)
warning: Relocation symbol "_cinit" [0x0022] has no section. (pass 0)
warning: Relocation of section "UDL_idata_0" failed, relocating to a shared memory location.
warning: Relocation of section "IDD_idata_0" failed, relocating to a shared memory location.


FirmWare Uploaded to p12F675-1(p12F675)
D:/SimulIDE/SimulIDE-R2036_Win32/SimulIDE-R2036_Win32/examples/Micro/Pic/MedTronic/C_Codes/SDCC/pic12f675/Blink/build\Blink.hex


Searching for variables... 0 variables found

Mapping Flash to Source... 0 lines mapped
-------------------------------------------------------

Starting Debbuger...

-------------------------------------------------------
Executing:
"D:/SDCC/bin/sdcc" --use-non-free -mpic14 -p12f675 -o"D:/SimulIDE/SimulIDE-R2036_Win32/SimulIDE-R2036_Win32/examples/Micro/Pic/MedTronic/C_Codes/SDCC/pic12f675/Blink/build\" "D:\SimulIDE\SimulIDE-R2036_Win32\SimulIDE-R2036_Win32\examples\Micro\Pic\MedTronic\C_Codes\SDCC\pic12f675\Blink\Blink.c"

D:/SimulIDE/SimulIDE-R2036_Win32/SimulIDE-R2036_Win32/examples/Micro/Pic/MedTronic/C_Codes/SDCC/pic12f675/Blink/build\Blink.asm:84:Message[1304] Page selection not needed for this device. No code generated.
message: Using default linker script "C:\Program Files\gputils\lkr\12f675_g.lkr".
warning: Relocation symbol "_cinit" [0x0000] has no section. (pass 0)
warning: Relocation symbol "_cinit" [0x0004] has no section. (pass 0)
warning: Relocation symbol "_cinit" [0x001E] has no section. (pass 0)
warning: Relocation symbol "_cinit" [0x0022] has no section. (pass 0)
warning: Relocation symbol "_cinit" [0x0000] has no section. (pass 0)
warning: Relocation symbol "_cinit" [0x0004] has no section. (pass 0)
warning: Relocation symbol "_cinit" [0x001E] has no section. (pass 0)
warning: Relocation symbol "_cinit" [0x0022] has no section. (pass 0)
warning: Relocation of section "UDL_idata_0" failed, relocating to a shared memory location.
warning: Relocation of section "IDD_idata_0" failed, relocating to a shared memory location.


FirmWare Uploaded to p12F675-1(p12F675)
D:/SimulIDE/SimulIDE-R2036_Win32/SimulIDE-R2036_Win32/examples/Micro/Pic/MedTronic/C_Codes/SDCC/pic12f675/Blink/build\Blink.hex


Searching for variables... 0 variables found

Mapping Flash to Source... 0 lines mapped

Debugger Started


Debugger Stopped


Debugger Stopped

-------------------------------------------------------
Executing:
"D:/SDCC/bin/sdcc" --use-non-free -mpic14 -V -p12f675 -o"D:/SimulIDE/SimulIDE-R2036_Win32/SimulIDE-R2036_Win32/examples/Micro/Pic/MedTronic/C_Codes/SDCC/pic12f675/Blink/build\" "D:\SimulIDE\SimulIDE-R2036_Win32\SimulIDE-R2036_Win32\examples\Micro\Pic\MedTronic\C_Codes\SDCC\pic12f675\Blink\Blink.c"

D:/SimulIDE/SimulIDE-R2036_Win32/SimulIDE-R2036_Win32/examples/Micro/Pic/MedTronic/C_Codes/SDCC/pic12f675/Blink/build\Blink.asm:84:Message[1304] Page selection not needed for this device. No code generated.
message: Using default linker script "C:\Program Files\gputils\lkr\12f675_g.lkr".
warning: Relocation symbol "_cinit" [0x0000] has no section. (pass 0)
warning: Relocation symbol "_cinit" [0x0004] has no section. (pass 0)
warning: Relocation symbol "_cinit" [0x001E] has no section. (pass 0)
warning: Relocation symbol "_cinit" [0x0022] has no section. (pass 0)
warning: Relocation symbol "_cinit" [0x0000] has no section. (pass 0)
warning: Relocation symbol "_cinit" [0x0004] has no section. (pass 0)
warning: Relocation symbol "_cinit" [0x001E] has no section. (pass 0)
warning: Relocation symbol "_cinit" [0x0022] has no section. (pass 0)
warning: Relocation of section "UDL_idata_0" failed, relocating to a shared memory location.
warning: Relocation of section "IDD_idata_0" failed, relocating to a shared memory location.
+ D:\SDCC\bin\sdcpp.exe -nostdinc -Wall -std=c11 -D__SDCC_PROCESSOR="12f675" -D__SDCC_PIC12F675 -D__SDCC_PIC14_STACK_SIZE=14 -obj-ext=.o -D__SDCC_CHAR_UNSIGNED -D__SDCC_USE_NON_FREE -D__SDCCCALL=0 -D__SDCC=4_2_0 -D__SDCC_VERSION_MAJOR=4 -D__SDCC_VERSION_MINOR=2 -D__SDCC_VERSION_PATCH=0 -D__SDCC_REVISION=13081 -D__SDCC_pic14 -D__STDC_NO_COMPLEX__=1 -D__STDC_NO_THREADS__=1 -D__STDC_NO_ATOMICS__=1 -D__STDC_NO_VLA__=1 -D__STDC_ISO_10646__=201409L -D__STDC_UTF_16__=1 -D__STDC_UTF_32__=1 -isystem "D:\SDCC\bin\..\include\pic14" -isystem "D:\SDCC\bin\..\include" -isystem "D:\SDCC\bin\..\non-free\include\pic14" -isystem "D:\SDCC\bin\..\non-free\include" "D:\SimulIDE\SimulIDE-R2036_Win32\SimulIDE-R2036_Win32\examples\Micro\Pic\MedTronic\C_Codes\SDCC\pic12f675\Blink\Blink.c"
+ C:\PROGRA~1\gputils\bin\gpasm.exe -o "D:/SimulIDE/SimulIDE-R2036_Win32/SimulIDE-R2036_Win32/examples/Micro/Pic/MedTronic/C_Codes/SDCC/pic12f675/Blink/build\Blink.o" -c "D:/SimulIDE/SimulIDE-R2036_Win32/SimulIDE-R2036_Win32/examples/Micro/Pic/MedTronic/C_Codes/SDCC/pic12f675/Blink/build\Blink".asm
+ C:\PROGRA~1\gputils\bin\gplink.exe -I"D:\SDCC\bin\..\lib\pic14" -I"D:\SDCC\bin\..\non-free\lib\pic14" -I"D:\SDCC\bin\..\lib\pic14" -I"D:\SDCC\bin\..\non-free\lib\pic14" -w -r -o "D:/SimulIDE/SimulIDE-R2036_Win32/SimulIDE-R2036_Win32/examples/Micro/Pic/MedTronic/C_Codes/SDCC/pic12f675/Blink/build\Blink" "D:/SimulIDE/SimulIDE-R2036_Win32/SimulIDE-R2036_Win32/examples/Micro/Pic/MedTronic/C_Codes/SDCC/pic12f675/Blink/build\Blink.o" "libsdcc.lib" "pic12f675.lib"

-------------------------------------------------------
Executing:
"D:/SDCC/bin/sdcc" --use-non-free -mpic14 -V -p12f675 -o"D:/SimulIDE/SimulIDE-R2036_Win32/SimulIDE-R2036_Win32/examples/Micro/Pic/MedTronic/C_Codes/SDCC/pic12f675/Blink/build\" "D:\SimulIDE\SimulIDE-R2036_Win32\SimulIDE-R2036_Win32\examples\Micro\Pic\MedTronic\C_Codes\SDCC\pic12f675\Blink\Blink.c"

D:/SimulIDE/SimulIDE-R2036_Win32/SimulIDE-R2036_Win32/examples/Micro/Pic/MedTronic/C_Codes/SDCC/pic12f675/Blink/build\Blink.asm:84:Message[1304] Page selection not needed for this device. No code generated.
message: Using default linker script "C:\Program Files\gputils\lkr\12f675_g.lkr".
warning: Relocation symbol "_cinit" [0x0000] has no section. (pass 0)
warning: Relocation symbol "_cinit" [0x0004] has no section. (pass 0)
warning: Relocation symbol "_cinit" [0x001E] has no section. (pass 0)
warning: Relocation symbol "_cinit" [0x0022] has no section. (pass 0)
warning: Relocation symbol "_cinit" [0x0000] has no section. (pass 0)
warning: Relocation symbol "_cinit" [0x0004] has no section. (pass 0)
warning: Relocation symbol "_cinit" [0x001E] has no section. (pass 0)
warning: Relocation symbol "_cinit" [0x0022] has no section. (pass 0)
warning: Relocation of section "UDL_idata_0" failed, relocating to a shared memory location.
warning: Relocation of section "IDD_idata_0" failed, relocating to a shared memory location.
+ D:\SDCC\bin\sdcpp.exe -nostdinc -Wall -std=c11 -D__SDCC_PROCESSOR="12f675" -D__SDCC_PIC12F675 -D__SDCC_PIC14_STACK_SIZE=14 -obj-ext=.o -D__SDCC_CHAR_UNSIGNED -D__SDCC_USE_NON_FREE -D__SDCCCALL=0 -D__SDCC=4_2_0 -D__SDCC_VERSION_MAJOR=4 -D__SDCC_VERSION_MINOR=2 -D__SDCC_VERSION_PATCH=0 -D__SDCC_REVISION=13081 -D__SDCC_pic14 -D__STDC_NO_COMPLEX__=1 -D__STDC_NO_THREADS__=1 -D__STDC_NO_ATOMICS__=1 -D__STDC_NO_VLA__=1 -D__STDC_ISO_10646__=201409L -D__STDC_UTF_16__=1 -D__STDC_UTF_32__=1 -isystem "D:\SDCC\bin\..\include\pic14" -isystem "D:\SDCC\bin\..\include" -isystem "D:\SDCC\bin\..\non-free\include\pic14" -isystem "D:\SDCC\bin\..\non-free\include" "D:\SimulIDE\SimulIDE-R2036_Win32\SimulIDE-R2036_Win32\examples\Micro\Pic\MedTronic\C_Codes\SDCC\pic12f675\Blink\Blink.c"
+ C:\PROGRA~1\gputils\bin\gpasm.exe -o "D:/SimulIDE/SimulIDE-R2036_Win32/SimulIDE-R2036_Win32/examples/Micro/Pic/MedTronic/C_Codes/SDCC/pic12f675/Blink/build\Blink.o" -c "D:/SimulIDE/SimulIDE-R2036_Win32/SimulIDE-R2036_Win32/examples/Micro/Pic/MedTronic/C_Codes/SDCC/pic12f675/Blink/build\Blink".asm
+ C:\PROGRA~1\gputils\bin\gplink.exe -I"D:\SDCC\bin\..\lib\pic14" -I"D:\SDCC\bin\..\non-free\lib\pic14" -I"D:\SDCC\bin\..\lib\pic14" -I"D:\SDCC\bin\..\non-free\lib\pic14" -w -r -o "D:/SimulIDE/SimulIDE-R2036_Win32/SimulIDE-R2036_Win32/examples/Micro/Pic/MedTronic/C_Codes/SDCC/pic12f675/Blink/build\Blink" "D:/SimulIDE/SimulIDE-R2036_Win32/SimulIDE-R2036_Win32/examples/Micro/Pic/MedTronic/C_Codes/SDCC/pic12f675/Blink/build\Blink.o" "libsdcc.lib" "pic12f675.lib"


FirmWare Uploaded to p12F675-1(p12F675)
D:/SimulIDE/SimulIDE-R2036_Win32/SimulIDE-R2036_Win32/examples/Micro/Pic/MedTronic/C_Codes/SDCC/pic12f675/Blink/build\Blink.hex


Searching for variables... 0 variables found

Mapping Flash to Source... 0 lines mapped

23pic12f675 SDCC debuge Empty Re: pic12f675 SDCC debuge Tue Nov 07, 2023 2:54 pm

arcachofo

arcachofo

MedTronic wrote:here is all ziped files
Attachment failed...

24pic12f675 SDCC debuge Empty Re: pic12f675 SDCC debuge Tue Nov 07, 2023 2:56 pm

MedTronic



arcachofo wrote:
MedTronic wrote:here is all ziped files
Attachment failed...

sorry sir
Attachments
pic12f675 SDCC debuge AttachmentBlink.zip
You don't have permission to download attachments.
(8 Kb) Downloaded 1 times

arcachofo likes this post

25pic12f675 SDCC debuge Empty Re: pic12f675 SDCC debuge Tue Nov 07, 2023 3:00 pm

arcachofo

arcachofo

MedTronic wrote:
arcachofo wrote:
MedTronic wrote:here is all ziped files
Attachment failed...

sorry sir
Maybe you are missing one step: https://youtu.be/qPB9ktplj5E?t=56

Sponsored content



Back to top  Message [Page 1 of 3]

Go to page : 1, 2, 3  Next

Permissions in this forum:
You cannot reply to topics in this forum