PIC汇编代码中的 udata_shr udata res是什么意思

2020-02-06 10:11发布

本帖最后由 hubinghuandi 于 2015-10-19 13:44 编辑

如题,下面的汇编代码看不太懂,请高手转换成C语言的,
这个是pic关于单项无刷风扇的,这个程序是PIC官网文档AN1178的附带例子程序中的一段,我想知道SHARED udata_shr ,BANK0         udata,res在这里的意思是什么
;; Flag variable definations
#define tmr0int                        0                                        ; bit to show we've received a timer0 interrupt
#define locked                   1                                         ; for a locked rotor condition
#define hallmeasure         2                                         ; use for starting/stopping a measurement

;; General Purpose Registers
SHARED udata_shr
w_save                res 1                                                        ; context saving
status_save        res 1

BANK0         udata
flag                res 1                                                        ; generic flag variable

delay1                res 1
delay2                res 1
delay3                res 1                               

counthigh        res 1                                                        ; used for TMR2 ISR for counting for tach measurement
countlow        res 1

tachlow                res 1                                                        ; used to store the tach measurement
tachhigh        res 1                                                               

speedin                res        1                                                        ; duty cycle of the incoming speed PWM
compstate        res 1                                                        ; state variable to store comparator measurement routine
speedstate        res 1                                                        ; use for the speed state machine
tachspeed        res 1                                                        ; store the result of the divide routine here
temp                res 1                                                        ; outside of ISR temp variable
lockedcount        res 1                                                        ; store the number of times the rotor has tried to be freed
把全部完整的文件一起上传
cn558355_PIC16F616.zip (17.75 KB, 下载次数: 7) 2015-10-19 13:28 上传 点击文件名下载附件
PIC官网AN1178程序范例


AN1178--智能风机控制.pdf (623.5 KB, 下载次数: 5) 2015-10-19 13:29 上传 点击文件名下载附件





友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
7条回答
banye2010
1楼-- · 2020-02-06 12:07
本帖最后由 banye2010 于 2015-10-19 12:48 编辑

就是定义了一堆变量吧,有什么好看的
hubinghuandi
2楼-- · 2020-02-06 12:18
本帖最后由 hubinghuandi 于 2015-10-19 12:52 编辑
banye2010 发表于 2015-10-19 12:46
就是定义了一堆变量吧,有什么好看的


SHARED udata_shr
res
udata
我知道是在定义变量,但是这几个不知道什么意思,高手能否给菜鸟普及一下。
D.lovers
3楼-- · 2020-02-06 14:03
是哪家的单片机,找对应的汇编手册看看,PDF搜索对应关键字理解理解就OK啦
our2008
4楼-- · 2020-02-06 15:07
 精彩回答 2  元偷偷看……
hubinghuandi
5楼-- · 2020-02-06 18:15
本帖最后由 hubinghuandi 于 2015-10-19 13:35 编辑
D.lovers 发表于 2015-10-19 12:59
是哪家的单片机,找对应的汇编手册看看,PDF搜索对应关键字理解理解就OK啦 ...


这个是pic关于单项无刷风扇的,这个程序是PIC官网文档AN1178的附带例子程序中的一段。没有搜索到相关的信息,既不是关键字也不确认是伪指令。完整的文件已经上传到楼主位,请高手帮忙看下
hubinghuandi
6楼-- · 2020-02-06 22:43
our2008 发表于 2015-10-19 13:25
SHARED udata_shr
udata
这两个是指定区域吧?类似RAM 区和ROM区.

你说的比较靠谱

一周热门 更多>