CCS_C ,PCWHD_V5.030 (PIC 编译器)

2020-02-06 09:47发布

分享一个好用的 PIC 编译器, CCS C
版本: PCWHD_V5.030  (PIC 编译器)

百度云下载:
链接:http://pan.baidu.com/s/1c0vmQ1y
密码:cjrb

pcwhdupd.exe  (66,658,120 bytes)
keyfilegen_pcwhd.exe (10,240 bytes)

有需要的朋友可以收藏一下。。
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
99条回答
pic_flash
1楼-- · 2020-02-16 14:11
 精彩回答 2  元偷偷看……
gmyu
2楼-- · 2020-02-16 18:08
pic_flash 发表于 2017-12-28 09:12
慎用, 因为他不是ANSI C, 以后移植不容易, 除非不使用内建功能。
但也因为他内建的功能都优化到很好,  ...

突然想问,这个CCS有没有OS部分,或者支持调度的代码。
pic_flash
3楼-- · 2020-02-16 20:25
本帖最后由 pic_flash 于 2018-1-12 06:59 编辑
gmyu 发表于 2018-1-11 20:43
突然想问,这个CCS有没有OS部分,或者支持调度的代码。


有内建RTOS
#use rtos 调出

下面是基本结构:


  1. // preprocessor directives
  2. #include <18F452.h>
  3. #use delay(clock=20000000)
  4. #use rs232(baud=9600,xmit=PIN_C6,rcv=PIN_C7)
  5. #use rtos(timer=0,minor_cycle=100ms)

  6. // function declarations
  7. #task(rate=1000ms,max=100ms)
  8. void The_first_rtos_task ( );

  9. #task(rate=500ms,max=100ms)
  10. void The_second_rtos_task ( );

  11. #task(rate=100ms,max=100ms)
  12. void The_third_rtos_task ( );

  13. // more function declarations
  14. // function implementations
  15. void The_first_rtos_task ( )
  16. {
  17. // task code
  18. }

  19. void The_second_rtos_task ( )
  20. {
  21. // task code
  22. }

  23. void The_third_rtos_task ( )
  24. {
  25. // task code
  26. }

  27. // more function implementations
  28. void main ( )
  29. {
  30. // initialization code for other resources
  31. rtos_run ( );
  32. }
复制代码
pic_flash
4楼-- · 2020-02-17 00:01
PIC 编译器, CCS C
版本: PCWHD_V5.076  (PIC 编译器)

百度云下载:
链接:https://pan.baidu.com/s/1pMjQ9Tp
密码:0y1y
miscell
5楼-- · 2020-02-17 00:35
谢谢!更新的好快。
chenhu2012
6楼-- · 2020-02-17 04:16
 精彩回答 2  元偷偷看……

一周热门 更多>