数字电路实验-交通灯控制器.doc
《数字电路实验-交通灯控制器.doc》由会员分享,可在线阅读,更多相关《数字电路实验-交通灯控制器.doc(24页珍藏版)》请在咨信网上搜索。
数字电路实验-交通灯控制器 ———————————————————————————————— 作者: ———————————————————————————————— 日期: 24 个人收集整理 勿做商业用途 数字电路实验报告 交通灯控制器 一、 任务要求 设计制作一个用于十字路口的交通灯控制器。 ①南北和东西方向各有一组绿、黄、红灯用于指挥交通,绿灯、黄灯和红灯的持 续时间分别为20 秒、5 秒和25 秒; ②当有特殊情况(如消防车、救护车等)时,两个方向均为红灯亮,计时停止, ③当特殊情况结束后,控制器恢复原来状态,继续正常运行; ④用两组数码管,以倒计时方式显示两个方向允许通行或禁止通行的时间; ·选做:增加左、右转弯显示控制功能; ·选做:其它自拟功能. 二、 系统设计 利用有限状态机描绘出交通灯的状态转移图,并设置记录东西和南北路口可通行时间的全局变量count1,count2。状态间的转移以count1,count2的值作为判断条件.对于两种特殊情况:当复位信号reset为高电平时,则回到最初状态;当紧急输入信号emergency为高电平时,则转移到一特殊状态,emergency结束后则返回当前状态。 三、总体框图及分块设计 ① 交通灯控制器的逻辑划分方块图 东西向路灯 蜂鸣器 控制器 系统复位 点阵 南北向路灯 时间显示 译码器 时间计数器 紧急请求 分频器 ② 交通灯控制器逻辑流程图 启动 东西向直行,南北向红灯 东西向左转,南北向红灯 东西向红灯,南北向左转 东西向红灯,南北向黄灯 东西向红灯,南北向直行 东西向黄灯,南北向红灯 过了20秒? 过了10秒? 是否按下紧急按钮 过了5秒 过了20秒? 过了5秒? 过了10秒? Yes Yes Yes Yes Yes Yes No No No No No No 正常运行 全亮红灯,铃声响起 Yes No ③ 交通灯控制器的状态转移图 东西向直行(001),南北向红灯(100) 点阵(00) 东西向红灯(100),南北向直行(001) 点阵(00) 东西向绿灯(100),南北向黄灯(010) 点阵(01) 东西向左转(001),南北向红灯(100) 点阵(01) T20=1 T20 =1 T5 =1 T5 =1 T20=1 T10 =0 T20 =0 T5 =0 任何状态 全都红灯 东西100 南北100 Bell=1 紧急按钮(A=0) 东西黄灯(010),南北红灯(100) 点阵(01) T5 =0 东西向红灯(100),南北向左转(001) 点阵(01) T10 =0 T10 =1 T10 =1 紧急按钮(A=1) 其中图中T20 T10 T5分别是直行,左转和黄灯的时间,通过判断其是否达到所规定的时间来给灯作为改变的条件,程序已交通灯分别初始化为绿灯和红灯.另外,在reset信号为高电平时,不论其他状态和信号如何,系统回到最初状态。在reset信号为低电平且emergency为高电平时,两个方向交通灯均为红灯警铃响起,直到emergency恢复低电平时,系统恢复到emergency刚快要出现时系统的状态,并会到之前状态。 2.分块设计 在我的实验设计中,整个交通灯控制器包括5个模块:①控制器模块control;②计数模块catcontol;③分频模块fenpin1和fenpin2;④点阵DZ;⑤数码管显示译码模块show;⑥警铃控制器bellcontrol;⑦主函数。现对各个模块的设计作一简要阐述: ①控制器模块control:这是整个程序的核心模块,控制着交通灯状态的转移和交通灯通行时间count1和count2数值的改变,该模块是交通灯状态转移图的程序实现。 ②计数模块catcontrol:该模块将count1和count2数值转化为二进制信号并以较高频率扫描数码管的共阴极以显示多位数字的通行时间,是一个初级译码模块. ③分频模块fenpin1:该模块将实验板固有50M晶振时钟频率进行50000000分频,以产生控制器模块所需的1Hz频率。 Fenpin2:则分成1KHz的供扫频和警铃的响声频率 ④点阵DZ:通过contol里面的返回值来控制其显示,行为低电平有效,列位高电平,从第一行开始扫描到第八行。 ⑤数码管显示译码模块show:该模块通过对每一位数字进行7段数码管译码以显示该数字,实际上我在实验中用的是8位信号。因为7段数码管实际上有8个输出信号,除了7段数码管,还有小数点显示信号。 ⑥警铃控制器bellcontrol:通过返回的紧急信号值来判断是否给警铃一个高电平的信号。 ⑦主函数:将各个模块连接起来. 3。仿真图 ① 正常运行下 ②加了紧急信号 ③复位信号 此次试验实现了交通灯的直行控制以及左转的控制,外加了紧急情况。并且在此之上附加了点阵显示交通灯的状态以及响铃的警报。 四.故障分析 1.我一开始是用50M的晶振频率扫描的数码管的共阴极,在初次下载好程序后运行时,我发现数码管显示的数字虽然正确,但亮度不一,容易被认为是错误的显示.后来我将50M晶振分频后产生的一个较低的频率来扫描共阴极,便得到了稳定、均匀、清晰的数码管数字显示。对于给警铃加的也频率开始也掌握不好,后来改了1KHz才感觉比较合适 2。在宿舍仿真的时候,第一次没改分频,导致机器承受不住,然后改了分频之后,第一次周期设置比较断,观察不到状态的转变,开始以为是代码错了,检查了很久,结果才发现是周期设置为50us比较短,而不是代码的问题,后来设置周期为250us之后就看到状态的转变。 3.在验收的时候由于小喇叭的硬件电路没连接,使得没有响声,本以为是软件代码问题,后来通过仿真观察发现还是有信号过去的。 五。总结 交通灯控制器是数字状态机中较为简单较为基本的一种应用,通过这次实验,我对数字状态机的基本应用和程序实现有了一个更为深刻的认识。开始第一周先是把书看了一次特别代码部分,首先了解其基本的句式及其基本结构。后来通过书上的一些例题看出了门道,从而有了些想法. VHDL语言比较直白,此次试验对于状态机的描述很直白,基本上都是通过状态的判断来制定当前的显示,通过各种case,以及计数器的循环来体现出. 这次实验收获颇多,先是学会了VHDL语言,还对数字电路中各种状态的转变及其转变条件的理解加深。还深刻意识到我们学的理论知识和实际也能很好的联系。 六。代码源程序 主函数traffic library ieee; use ieee.std_logic_1164.all; use ieee。std_logic_unsigned。all; use ieee.std_logic_arith.all; entity traffic is port(clk,reset,emergency:in std_logic; light1,light2:out std_logic_vector(2 downto 0); cat:out std_logic_vector(5 downto 0); num_out:out std_logic_vector(7 downto 0); hang,lie:out std_logic_vector(7 downto 0); bell_out:out std_logic); end traffic; architecture arch of traffic is signal clk_a:std_logic; signal clk_b:std_logic; signal count_a:std_logic_vector(5 downto 0); signal count_b:std_logic_vector(5 downto 0); signal e:std_logic; -—emergency对应bell信号 signal dz_a:std_logic_vector(1 downto 0); signal show_num:std_logic_vector(3 downto 0); component fenpin1 is port(clk:in std_logic; clk_out:out std_logic); end component; component fenpin2 is port(clk:in std_logic; clk_out:out std_logic); end component; component control is port(clk:in std_logic; emergency:in std_logic; reset:in std_logic; light1:out std_logic_vector(2 downto 0):="001”; light2:out std_logic_vector(2 downto 0):=”100"; counter1:out std_logic_vector(5 downto 0); counter2:out std_logic_vector(5 downto 0); bell:out std_logic; dz:out std_logic_vector(1 downto 0)); end component; component dz is port(clk:in std_logic; dz:in std_logic_vector(1 downto 0); hang,lie:out std_logic_vector(7 downto 0)); end component; component bellcontrol is port(bell:in std_logic; clk1,clk2:in std_logic; bell_out:out std_logic); end component; component catcontrol is port(clk:in std_logic; cat:out std_logic_vector(5 downto 0); num_in:out std_logic_vector(3 downto 0); counter1:in std_logic_vector(5 downto 0); counter2:in std_logic_vector(5 downto 0)); end component; component show is port (num_in:in std_logic_vector(3 downto 0); num_out:out std_logic_vector(7 downto 0)); end component; begin u1:fenpin1 port map(clk=>clk,clk_out=>clk_a); u2:fenpin2 port map(clk=〉clk,clk_out=>clk_b); u3:control port map(clk=>clk_a,reset=>reset,emergency=〉emergency,light1=〉light1,light2=〉light2,counter1=〉count_a,counter2=〉count_b,bell=>e,dz=〉dz_a); u4:dz port map(clk=>clk_b,dz=>dz_a,hang=>hang,lie=〉lie); u5:bellcontrol port map(bell=〉e,clk1=〉clk_b,clk2=〉clk_a,bell_out=>bell_out); u6:catcontrol port map(clk=〉clk_b,cat=〉cat,num_in=>show_num,counter1=〉count_a,counter2=>count_b); u7:show port map(num_in=〉show_num,num_out=〉num_out); end arch; 分频器fenpin1 (1Hz) library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_unsigned。all; entity fenpin1 is port (clk:in std_logic; clk_out:out std_logic); end fenpin1; architecture arch of fenpin1 is signal tmp:integer range 0 to 49999999; begin p1:process(clk) begin if clk’event and clk='1’ then if tmp=49999999 then tmp〈=0; else tmp〈=tmp+1; end if; if tmp<25000000 then clk_out〈=’0’; else clk_out<='1’; end if; end if; end process p1; end arch; fenpin2 (1KHz) library ieee; use ieee。std_logic_1164。all; use ieee.std_logic_unsigned。all; entity fenpin2 is port (clk:in std_logic; clk_out:out std_logic); end fenpin2; architecture arch of fenpin2 is signal tmp:integer range 0 to 49999; begin p1:process(clk) begin if clk'event and clk=’1' then if tmp=49999 then tmp<=0; else tmp<=tmp+1; end if; if tmp<25000 then clk_out〈=’0'; else clk_out<=’1’; end if; end if; end process p1; end arch; 控制器control library ieee; use ieee。std_logic_1164.all; use ieee.std_logic_unsigned.all; use ieee.std_logic_arith。all; entity control is port(clk:in std_logic; emergency:in std_logic; reset:in std_logic; light1:out std_logic_vector(2 downto 0); light2:out std_logic_vector(2 downto 0); counter1:out std_logic_vector(5 downto 0); counter2:out std_logic_vector(5 downto 0); bell:out std_logic; dz:out std_logic_vector(1 downto 0)); end control; architecture arch of control is signal count1:integer:=20; signal count2:integer:=35; signal n_count1:integer; signal n_count2:integer; type all_state is (s0,s1,s2,s3,s4,s5,s6); signal state:all_state:=s0; signal tempstate:all_state:=s0; begin p1:process(clk,emergency,reset) begin if(reset=’1') then state〈=s0;count1<=20;count2<=35;bell〈=’0’; elsif(emergency='1') then state〈=s6;count1<=0;count2〈=0;bell<='1’; elsif(clk’event and clk=’1') then case state is when s0=>if count1〉1 then tempstate〈=s0;count1〈=count1—1;count2〈=count2—1;n_count1〈=count1;n_count2〈=count2; else state〈=s1;count1〈=10;count2〈=count2—1;bell〈=’0’; end if; when s1=>if count1〉1 then tempstate〈=s1;count1<=count1-1;count2〈=count2—1;n_count1<=count1;n_count2〈=count2; else state〈=s2;count1<=5;count2<=count2—1;bell〈='0'; end if; when s2=〉if count1>1 then tempstate<=s2;count1<=count1—1;count2<=count2—1;n_count1〈=count1;n_count2<=count2; else state<=s3;count1〈=35;count2〈=20;bell<=’0'; end if; when s3=>if count2>1 then tempstate〈=s3;count2<=count2-1;count1〈=count1-1;n_count1<=count1;n_count2<=count2; else state〈=s4;count2〈=10;count1<=count1—1;bell〈=’0'; end if; when s4=〉if count2〉1 then tempstate〈=s4;count2〈=count2—1;count1<=count1-1;n_count1〈=count1;n_count2<=count2; else state<=s5;count2<=5;count1〈=count1-1;bell〈='0’; end if; when s5=>if count2〉1 then tempstate<=s5;count2<=count2-1;count1〈=count1-1;n_count1<=count1;n_count2〈=count2; else state〈=s0;count1〈=20;count2<=35;bell〈='0’; end if; when s6=〉state〈=tempstate;count1〈=n_count1;count2<=n_count2; when others=〉state〈=s0; end case; end if; counter1〈=conv_std_logic_vector(count1,6); counter2〈=conv_std_logic_vector(count2,6); end process p1; p2:process(emergency,reset,state) begin if(reset=’0’ and emergency=’0’) then case state is when s0=〉dz<=”00”; when s1=〉dz〈="01"; when s3=〉dz〈=”00"; when s4=>dz<="01”; when others=〉dz<=”10"; end case; else dz<="10”; end if; end process p2; p3:process(state) begin case state is when s0=>light1〈=”001";light2<=”100”; when s1=>light1〈=”001";light2〈="100"; when s2=>light1〈="010”;light2<="100”; when s3=>light1〈="100”;light2〈=”001”; when s4=>light1<="100”;light2<="001"; when s5=>light1<=”100”;light2〈="010”; when s6=>light1〈="100”;light2<="100"; end case; end process p3; end arch; cotrol是通过count的递减来判断是否该转状态,并且吧当前的状态保存在n_count里面,在紧急信号返回时候可以会到当前状态。一共7个状态,s0~s6。 计数器catcontrol library ieee; use ieee.std_logic_1164。all; use ieee。std_logic_unsigned。all; use ieee.std_logic_arith。all; entity catcontrol is port(clk:in std_logic; cat:out std_logic_vector(5 downto 0); num_in:out std_logic_vector(3 downto 0); counter1:in std_logic_vector(5 downto 0); counter2:in std_logic_vector(5 downto 0)); end catcontrol; architecture arch of catcontrol is signal temp:integer range 0 to 3; signal count1:integer range 0 to 35; signal count2:integer range 0 to 35; signal count:integer range 0 to 35; signal num:std_logic_vector(3 downto 0); signal cat_tmp:std_logic_vector(5 downto 0):=”011111"; begin p1:process(clk) begin count1<=conv_integer(counter1); count2<=conv_integer(counter2); if(clk'event and clk='1') then if(temp=3) then temp〈=0; else temp〈=temp+1; --使temp实现0~3的计数功能 end if; end if; end process p1; p2:process(temp) begin case temp is when 0=> count〈=count1; --temp值变化的前半周期count被赋值count1 when 1=〉 count〈=count1; when 2=〉 count<=count2; —-temp值变化的前半周期count被赋值coun2 when 3=〉 count<=count2; end case; end process p2; p3:process(count,temp) begin case count is when 0=>case temp is when 0=〉 num〈=”0000";cat_tmp〈=”011111”; --注cat为低电平有效 when 1=〉 num<=”0000”;cat_tmp〈=”101111"; when 2=> num<="0000";cat_tmp<="111101”; when 3=〉 num<="0000";cat_tmp<=”111110"; end case; when 1=〉case temp is when 0=> num<="0000";cat_tmp〈="011111"; when 1=> num〈=”0001";cat_tmp〈="101111"; when 2=〉 num<=”0000";cat_tmp<=”111101"; when 3=〉 num〈=”0001”;cat_tmp〈=”111110"; end case; when 2=>case temp is when 0=〉 num<=”0000”;cat_tmp〈="011111"; when 1=> num<="0010";cat_tmp<="101111"; when 2=> num〈="0000”;cat_tmp<="111101”; when 3=〉 num〈=”0010”;cat_tmp<="111110"; end case; when 3=〉case temp is when 0=〉 num〈=”0000”;cat_tmp<="011111"; when 1=〉 num<=”0011";cat_tmp<=”101111"; when 2=〉 num<=”0000”;cat_tmp<=”111101"; when 3=> num〈=”0011”;cat_tmp<=”111110"; end case; when 4=〉case temp is when 0=〉 num<=”0000";cat_tmp〈="011111"; when 1=〉 num〈=”0100”;cat_tmp<=”101111"; when 2=〉 num〈=”0000”;cat_tmp<=”111101”; when 3=〉 num<="0100”;cat_tmp<="111110"; end case; when 5=〉case temp is when 0=〉 num〈="0000”;cat_tmp〈="011111”; when 1=> num〈="0101”;cat_tmp〈="101111"; when 2=〉 num<="0000”;cat_tmp〈=”111101”; when 3=〉 num<=”0101”;cat_tmp〈="111110”; end case; when 6=>case temp is when 0=〉 num〈="0000";cat_tmp<=”011111"; when 1=> num〈=”0110";cat_tmp<="101111”; when 2=〉 num<=”0000";cat_tmp〈=”111101"; when 3=> num<="0110”;cat_tmp〈=”111110"; end case; when 7=〉case temp is when 0=> num<=”0000";cat_tmp<="011111"; when 1=> num<="0111";cat_tmp<=”101111"; when 2=> num〈="0000";cat_tmp<=”111101”; when 3=〉 num〈=”0111";cat_tmp<="111110"; end case; when 8=〉case temp is when 0=〉 num<=”0000”;cat_tmp<=”011111”; when 1=〉 num〈=”1000";cat_tmp<="101111”; when 2=〉 num<="0000";cat_tmp〈="111101”; when 3=> num<=”1000”;cat_tmp〈=”111110”; end case; when 9=>case temp is when 0=〉 num<="0000";cat_tmp<="011111”; when 1=〉 num〈="1001";cat_tmp〈=”101111”; when 2=〉 num<="0000”;cat_tmp<=”111101”; when 3=〉 num<=”1001";cat_tmp<=”111110"; end case; when 10=〉case temp is when 0=> num〈="0001";cat_tmp<=”011111"; when 1=〉 num<=”0000";cat_tmp<="101111"; when 2=> num〈=”0001";cat_tmp<="111101”; when 3=> num<="0000";cat_tmp〈=”111110”; end case; when 11=>case temp is when 0=〉 num<=”0001”;cat_tmp〈="011111"; when 1=〉 num<=”0001";cat_tmp<=”101111"; when 2=> num〈="0001”;cat_tmp<="111101”; when 3=〉 num<=”0001";cat_tmp<="111110”; end case; when 12=>case temp is when 0=> num〈="0001”;cat_tmp〈="011111"; when 1=> num<=”0010";cat_tmp<="101111”; when 2=〉 num〈=”0001”;cat_tmp〈=”111101"; when 3=> num〈=”0010”;cat_tmp<="111110"; end case; when 13=〉case temp is when 0=〉 num<="0001";cat_tmp〈="011111"; when 1=> num〈="0011”;cat_tmp<=”101111"; when 2=> num〈=”0001”;cat_tmp〈=”111101”; when 3=> num〈="0011";cat_tmp〈="111110”; end case; when 14=>case temp is when 0=〉 num<=”0001”;cat_tmp<="011111”; when 1=〉 num〈=”0100";cat_tmp<=”101111"; when 2=〉 num<="0001”;cat_tmp〈=”111101"; when 3=> num<="0100”;cat_tmp<=”111110"; end case; when 15=>case temp is when 0=〉 num〈="0001";cat_tmp<="011111”; when 1=> num<="0101";cat_tmp<=”101111”; when 2=〉 num〈="0001";cat_tmp〈=”111101”; when 3=> num〈=”0101";cat_tmp〈=”111110"; end case; when 16=〉case temp is when 0=> num〈="0001";cat_tmp〈="011111";- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 数字电路 实验 交通灯 控制器
咨信网温馨提示:
1、咨信平台为文档C2C交易模式,即用户上传的文档直接被用户下载,收益归上传人(含作者)所有;本站仅是提供信息存储空间和展示预览,仅对用户上传内容的表现方式做保护处理,对上载内容不做任何修改或编辑。所展示的作品文档包括内容和图片全部来源于网络用户和作者上传投稿,我们不确定上传用户享有完全著作权,根据《信息网络传播权保护条例》,如果侵犯了您的版权、权益或隐私,请联系我们,核实后会尽快下架及时删除,并可随时和客服了解处理情况,尊重保护知识产权我们共同努力。
2、文档的总页数、文档格式和文档大小以系统显示为准(内容中显示的页数不一定正确),网站客服只以系统显示的页数、文件格式、文档大小作为仲裁依据,个别因单元格分列造成显示页码不一将协商解决,平台无法对文档的真实性、完整性、权威性、准确性、专业性及其观点立场做任何保证或承诺,下载前须认真查看,确认无误后再购买,务必慎重购买;若有违法违纪将进行移交司法处理,若涉侵权平台将进行基本处罚并下架。
3、本站所有内容均由用户上传,付费前请自行鉴别,如您付费,意味着您已接受本站规则且自行承担风险,本站不进行额外附加服务,虚拟产品一经售出概不退款(未进行购买下载可退充值款),文档一经付费(服务费)、不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
4、如你看到网页展示的文档有www.zixin.com.cn水印,是因预览和防盗链等技术需要对页面进行转换压缩成图而已,我们并不对上传的文档进行任何编辑或修改,文档下载后都不会有水印标识(原文档上传前个别存留的除外),下载后原文更清晰;试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓;PPT和DOC文档可被视为“模板”,允许上传人保留章节、目录结构的情况下删减部份的内容;PDF文档不管是原文档转换或图片扫描而得,本站不作要求视为允许,下载前自行私信或留言给上传者【w****g】。
5、本文档所展示的图片、画像、字体、音乐的版权可能需版权方额外授权,请谨慎使用;网站提供的党政主题相关内容(国旗、国徽、党徽--等)目的在于配合国家政策宣传,仅限个人学习分享使用,禁止用于任何广告和商用目的。
6、文档遇到问题,请及时私信或留言给本站上传会员【w****g】,需本站解决可联系【 微信客服】、【 QQ客服】,若有其他问题请点击或扫码反馈【 服务填表】;文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“【 版权申诉】”(推荐),意见反馈和侵权处理邮箱:1219186828@qq.com;也可以拔打客服电话:4008-655-100;投诉/维权电话:4009-655-100。
1、咨信平台为文档C2C交易模式,即用户上传的文档直接被用户下载,收益归上传人(含作者)所有;本站仅是提供信息存储空间和展示预览,仅对用户上传内容的表现方式做保护处理,对上载内容不做任何修改或编辑。所展示的作品文档包括内容和图片全部来源于网络用户和作者上传投稿,我们不确定上传用户享有完全著作权,根据《信息网络传播权保护条例》,如果侵犯了您的版权、权益或隐私,请联系我们,核实后会尽快下架及时删除,并可随时和客服了解处理情况,尊重保护知识产权我们共同努力。
2、文档的总页数、文档格式和文档大小以系统显示为准(内容中显示的页数不一定正确),网站客服只以系统显示的页数、文件格式、文档大小作为仲裁依据,个别因单元格分列造成显示页码不一将协商解决,平台无法对文档的真实性、完整性、权威性、准确性、专业性及其观点立场做任何保证或承诺,下载前须认真查看,确认无误后再购买,务必慎重购买;若有违法违纪将进行移交司法处理,若涉侵权平台将进行基本处罚并下架。
3、本站所有内容均由用户上传,付费前请自行鉴别,如您付费,意味着您已接受本站规则且自行承担风险,本站不进行额外附加服务,虚拟产品一经售出概不退款(未进行购买下载可退充值款),文档一经付费(服务费)、不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
4、如你看到网页展示的文档有www.zixin.com.cn水印,是因预览和防盗链等技术需要对页面进行转换压缩成图而已,我们并不对上传的文档进行任何编辑或修改,文档下载后都不会有水印标识(原文档上传前个别存留的除外),下载后原文更清晰;试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓;PPT和DOC文档可被视为“模板”,允许上传人保留章节、目录结构的情况下删减部份的内容;PDF文档不管是原文档转换或图片扫描而得,本站不作要求视为允许,下载前自行私信或留言给上传者【w****g】。
5、本文档所展示的图片、画像、字体、音乐的版权可能需版权方额外授权,请谨慎使用;网站提供的党政主题相关内容(国旗、国徽、党徽--等)目的在于配合国家政策宣传,仅限个人学习分享使用,禁止用于任何广告和商用目的。
6、文档遇到问题,请及时私信或留言给本站上传会员【w****g】,需本站解决可联系【 微信客服】、【 QQ客服】,若有其他问题请点击或扫码反馈【 服务填表】;文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“【 版权申诉】”(推荐),意见反馈和侵权处理邮箱:1219186828@qq.com;也可以拔打客服电话:4008-655-100;投诉/维权电话:4009-655-100。
关于本文