




已阅读5页,还剩18页未读, 继续免费阅读
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1.怎样在TCL脚本分配管脚 source .tcl 有点问题:# source stratix_pin_assign.tclcouldnt read file stratix_pin_assign.tcl: no such file or directory 答: From the Tools menu select Tcl s cripts, and then from the project folder choose the setup s cript for your particular development board, and click Run.2D:TEST ios_sst60下载时出现错误:Error: Cant configure device. Expected JTAG ID code 0x020010DD for device 1, but found JTAG ID code 0x020B40DD.答:SOPC所选器件和开发板上的不一致。3在NOIS II中Bulid例程hello_world都出现了错误,错误提示为:gdrive/c/altera/kits/NIOS2/components/altera_nios2/HAL/src/alt_busy_sleep.c:68: error: parse error before / token等错误全部由alt_busy_sleep.c引起,都是关于括号不匹配的问题,而alt_busy_sleep.c是IDE中的一个默认程序。这个错误同样出现在D:TESTDE2Projectsoftware ios2 ,培训用的一个简单实验。答:找到system.h文件,里面有个关于系统时钟频率的设置项,应该是没有赋值,你手动赋值。比如你用50MHZ的时钟,就设成50000000。如果总是出现上述问题,可能和软件有关系,建议重新安装软件。注意quartus和NIOS安装版本一定要相同,不能混装。4这个错误是什么原因引起,把那个sdk_arm删除后,又提示另一个地方出错。答:运行NIOS II IDE,点Project-Clear,重新Builde,应该可以解决问题。5在SOPC中Generate出现如下错误是怎么回事? Error: Generator program for module epcs_controller did NOT run successfully. 只要在SOPC中加入epcs_controller就会出现此错误,无法生成一个元件。答:可能和软件有关系,建议重新安装软件(这个问题是我刚学NIOS遇到的最头痛的一个问题,问题的原因是Quartus和Nios安装的版本不一致)。6在Nios II IDE中,怎样打开一个已经存在的工程?每次新建工程比较麻烦。答:指定一个Nios II IDE的工作目录,就打开了那个目录下存在的工程。另外,在Nios II中是可以建立多个工程的。7在Quartus II 中编译出现如下错误怎么办?Error: Cant place pins assigned to pin location Pin_AE24 (IOC_X65_Y2_N2)答:按F1可以查看帮助,出现这样的错误的原因是:CAUSE: You assigned two or more pins to the specified location, but the Fitter cannot place all the pins in that location.删除这个管脚即可。有一种比较简便的方法,就是在工程目录中找到一个后缀为QSF的管脚配置文件,查找Pin_AE24删除那行语句就行了。8.如何在NIOS II IDE 下跟踪查看变量的定义或者函数的定义?答:按住CTRL键,鼠标移动到变量或者函数名的地方,就可以发现这些地方高亮显示,单击就可以进入到变量或者函数定义的地方。9. 在count_binary.c有这样一段程序,它是如何操作的? unsigned int data = segmentshex & 15 | (segments(hex 4) & 15 4) & 15 Other 下),为系统添加输出接口,你没有把该组件改名成LED_PIO,而是保留了原始的名字:PIO_0;但你又通过 IOWR_ALTERA_AVALON_PIO_DATA(LED_PIO_BASE, led);来向该组件写入数据,就会导致上述错误。解决办法:1.可以修改sopc系统,为该PIO改名为LED_PIO ;2.在hello_led.c的前面给LED_PIO_BASE赋值,如#define LED_PIO_BASE 0x00001800,后面的这个地址要与SOPC中的地址对应。11. 如何在NIOSII中驱动外部芯片或设备?答:在开发过程中,我们经常会使用外接一些芯片,或外接一些实用电路,比如AD芯片、串并转换芯片等等,那么如何在NIOS II中去使用这些芯片呢? 我们在开发中会有多个选择:1如果这个芯片是使用数据和地址总线的,并且补线时没有足够的单独引脚,那么这个芯片必须挂接在tri_stat总线上,这种用法和我们以往单片机或 MCU 类似,在SOPC Builder中直接定义用户逻辑,如果有额外的控制引脚,就需要用PIO来驱动,虽然公用数据地址线节省了引脚,但做控制时序费劲了。2如果这个芯片单独使用数据和地址,那么我们会直接做成Avalone总线的Slave设备,在Sopc Builder中自己定义component。需要写HDL模块,自己定控制、状态、数据寄存器和控制位定义,这种方式控制灵活,易于实现复杂的控制时序。3在Quartus II 工程中画电路模块(或用HDL写电路模块),这种方式是独立于SOPC定义的模块之外的,做一个纯电路的处理模块,有时候会比较容易实现某些灵活的处理。12.在SOPC添加Avalon Trisatate Bridge时,提示有如下错误,该如何解决?Tri state bridge/tristate master requires a slave of type Avalon tristate.Please add a slave of type Avalon tristate.Generate按钮为灰色,无法Generate答:需要一个专门接三台桥的设备, 把flash添加到sopc中就可以了。13. 在做count_binary这个例子时,出现一个错误: error: BUTTON_PIO_IRQ undeclared (first use in this function) BUTTON_PIO_IRQ的值如何给他定义?答:这个错误可能是在sopc builder中定制的pio端口名称是否与程序中用的不一致,要和程序里的一致,把pio组件的名称就改为button_pio。14.在Quartus II中编译时出现如下错误:Error: Node instance cpu_bht instantiates undefined entity cpu_bht_module点击错误的地方弹出一个对话框这个错误是怎么回事?怎样解决?答:可能是在SOPC中所选的CPU型号不正确,换一个试试。15.怎样自动分配管脚?答:在Quartus II自动分配管脚有一个方法,点击Assignments-Import Assginments,导入一个管脚分配文件,后缀为.csv .txt等,前提是在顶层原理图中各个输入输出的名称要和这个文件中的名称一致。16.在NIOS II中编译时出现如下错误怎么解决?错误是不是由SOPC中的RAM引起?region ram is full (count_binary.elf section .text). Region needs to be 24672 bytes larger.address 0x80c1f8 of count_binary.elf section .rwdata is not within region ramUnable to reach edge_capture (at 0x00800024) from the global pointer (at 0x0081419c) because the offset (-82296) is out of the allowed range, -32678 to 32767.答:可能时RAM的大小不够,也有可能是中断地址(exception address) 的偏余量不够,设置大些就可以了。如果还是出现 这个问题,加一个SDRAM试试。17在Quartus II中,为什么编译一些样板工程都会出错?Error: DDR timing cannot be verified until project has been successfully compiled.Error: Evaluation of Tcl s cript auto_verify_ddr_timing.tcl unsuccessfulError: Quartus II Shell was unsuccessful. 2 errors, 1 warning答:在做样板工程时要注意一个问题:Due to the library paths that are coded into the Quartus settings for this project, if a user wishes to modify the hardware design they must first strip out any old paths from within the project settings file (qsf)在qsf文件中找到类似语句set_global_assignment-nameVHDL_FILE C:/MegaCore/ddr_ddr2_sdram-v3.2.0/lib/auk_ddr_tb_functions.vhd这里的目录是初始的目录,把它改为正确的目录。18.在NIOSII IDE编译时出现如下错误是怎么回事?system_des cription/alt_sys_init.c:75: error: ONCHIP_MEMORY_BASE undeclared here (not in a function)system_des cription/alt_sys_init.c:75: error: initializer element is not constantsystem_des cription/alt_sys_init.c:75: error: (near initialization for ext_flash.dev.write)system_des cription/alt_sys_init.c:75: error: initializer element is not constantsystem_des cription/alt_sys_init.c:75: error: (near initialization for ext_flash.dev.read)答:ONCHIP_MEMORY_BASE没有赋值,在alt_sys_init.c 程序的开头加上#define ONCHIP_MEMORY_BASE 0x00000000后面的这个地址要与SOPC中的对应。19. 在NIOS II IDE编译时出现如下错误是怎么回事?Pausing target processor: not responding.Resetting and trying again: FAILEDLeaving target processor paused答:以下是一位FAE的回答:1. 关于USB-Blaster在Nios II IDE下载时会发生偶发性错误,这种现象主要是IDE software与Nios II CPU透过USB-Blaster在做通讯时发生错误,若是确认FPG上配置没有错误,连续发生错误的机率应该是相当的低,您只需要重新下载即可。2. 若您使用Nios II IDE 6.0,请尽量配合SOPC Builder 6.0重新build您的system,并且使用Quartus II 6.0重新compile您的project,以减少CPU与IDE software不兼容的情形。20.在NIOS II IDE中工程的System Library选项中的这几个选项代表什么意思?.text .rodata .rwdata 与reset .exception这几个地址之间的关系是什么?答:.text : 代码区 .rodata:只读数据区,一般存放静态全局变量 .rwdata:可读写变量数据区另外还有.bss:存放未被初始化的变量。 .text the actual executable code .rodata any read only data used in the execution of the code .rwdata where read/write variables and pointers are stored heap where dynamically allocated memory is located stack where function call parameters and other temporary data is stored21. 怎样在NIOSII中操作PIO,提供一种参考方法。答:hello_led.c是这样写IO口的:IOWR_ALTERA_AVALON_PIO_DATA(LED_PIO_BASE, led);首先在altera_avalon_pio_regs.h找到定义i nclude#define IORD_ALTERA_AVALON_PIO_DATA(base) IORD(base, 0)#define IOWR_ALTERA_AVALON_PIO_DATA(base, data) IOWR(base, 0, data)因此在NIOSII中可以调用i nclude库函数IORD/IOWR来操作PIO。在smallsoftwarehello_led_0_syslibDebugsystem_des cription下的system.h中,有以下内容:#define LED_PIO_TYPE altera_avalon_pio#define LED_PIO_BASE 0x00004000其中LED_PIO_BASE(IO寄存器地址?)为0x00004000同SOPCBuilder中设置一致!(其实在SopcBuilder中有关NiosII的配置,就是通过system.h来传送给IDE的!)最后用IOWR(0x00004000, 0, led);替代IOWR_ALTERA_AVALON_PIO_DATA(LED_PIO_BASE, led);编译,下载到开发板上,运行成功!22.怎样让SDRAM和FLASH,SRAM的地址公用?答: sdram可以和sram,flash共用数据总线和地址总线.在sopc builder中添加SDRAM控制器时,在其share pins via tristate选择项上勾上Controller shares dq/dqm/addr IO pins选项,这样sdram可以和sram,flash共用数据总线和地址总线.但是ATERA不推荐这样做,因为这样会降低SDRAM控制器的性能,在FPGA芯片管脚资源比较紧张的时候迫不得已才这样做。23.怎样使用DE2板上的数码管,绑定管脚时需要注意什么?请举一个例子说明。答: DE2板上的数码管只用了7位,小数点位默认为高电平。例如,在做例程count_binary时,需要用到两个数码管,以实现00到FF的计数,在 SOPC添加一个16位的PIO SEVEN_SEG15.0,绑定管脚时注意:使SEVEN_SEG0.6帮定到数码管HEX06.0位,SEVEN_SEG8. 14绑定到数码管HEX16.0位,SEVEN_SEG7和SEVEN_SEG15直接接VCC,这样才能让两个数码管正常显示并计数。24. 在NIOS II IDE 中调试,编译通过的软件时,出现了下面的提示,是什么原因?Using cable ByteBlasterII LPT1, device 1, instance 0x00Processor is already pausedDownloading 00000000 ( 0%)Downloaded 57KB in 1.2s (47.5KB/s)Verifying 00000000 ( 0%)Verify failedLeaving target processor paused答: Verify failed这个问题说明板子的复位电路可能有问题,或装载程序的外部SRAM或SDRAM和CPU 的连接或时序有问题,也有可能是软件偶尔的错误。若是软件偶尔的错误,可以先复位一下CPU,然后再下载程序;或者断电后重新下载.sof和NIOS II 程序25.在练习C:alterakits ios2_51examplesverilog niosII_cycloneII_2c35的工程时,里面有很多元件DE2板上都没有对应的管脚,比如网络元件lan91c111,使用的IP核,还有 24位的ext_flash,而DE2板上的FLASH只有22位。是不是SOPC中只能让DE2板上有对应管脚的元件存在,其它的只能删除?答:这个目录下的example是针对altera自己的板子的,和DE2硬件不能对应,只能作为参考,或者做一些修改后用。26.在SOPC中加了一个200KB的onchip_memory ,为什么在Quartus II 编译时出现这个错误?Error: Selected device has 105 RAM location(s) of type M4K RAM. However, the current design needs more than 105 to successfully fit答:SOPC中的onchip_memory和M4K RAM根本就不是一个概念。Quartus II中编译出现这个错误,是由于设计中用到了太多的M4K。27. 关于sopc-builder 中reset address 的设置,一直搞得不是很明白。答:SOPC中的reset address 指定的是最终全部软件程序代码下载到的地方,并且程序从reset address 启动。SOPC 中的exception address 指定的是系统异常处理代码存放的地方。如果exception address 和reset address 不一样,那么程序从reset address 启动后将把放在reset address 处的系统异常处理代码拷贝到exception address 。NIOSII软件中的text address指定的是程序运行的地方。如果text address和reset address 不一样,那么程序从reset address 启动后将把放在reset address 处的普通只读程序代码拷贝到text address 。NIOS II软件中的rodata address指定的是只读数据的存放地方。如果rodata address和reset address 不一样,那么程序从reset address 启动后将把放在reset address 处的只读数据拷贝到rodata address 。NIOS II软件中的rwdata address指定的是可读写数据的存放地方。如果rwdata address和reset address 不一样,那么程序从reset address 启动后将初始化rwdata address 处的可读写数据。28. 如何提高NIOS II系统的性能?答:主要可以从这几个方面入手:1、使用fast CPU类型。2、提高系统主频。3、优先在SRAM中运行程序,SDRAM次之,最后选择FLASH中运行。4、使用片内RAM作为数据缓冲,片外SRAM次之,最后选SDRAM。5、IO数据传输尽可能采用DMA。6、对能并行处理的数据考虑使用多CPU协同处理。7、典型算法做成用户指令,有256条可以做,足够你用的。8、能用HDL模块来完成工作吗?能,就用HDL模块做成外设来完成吧9、采用C2H。29.如何优化NIOS II里的应用工程?答:Optimize your Nios II application design!1.Creat an Blank Project:Select Altera Nios II C/C+ Application2. In main.cyour main fuctional c/c+ file:i nclude system.hi nclude alt_types.h#.int main (void) _attribute_ (weak, alias (alt_main);int alt_main (void).return 0;3.System Library Properties OptionsSelect Clean EXITSelect Small C LibrarySelect Reduced Device DriversSpicify linker s cript position, to ext_flash, ext_ram or on-chip-ram30. 关于verify failed的总结1. SDRAM的时序不对有时候不正确的pll clock phase shift for sdram_clk_out就会导致SDRAM不能正常工作:2. SDRAM的连线不对,物理板子的连线问题3. 在调试的时候,程序下载的空间不是非易丢失存储器(non-volatile memory)或者存储器的空间不够也会导致这个错误4. QuartusII的默认设置导致的错误QuartusII默认将所有没有使用的IO口接地,这种时候可能导致某些元器件工作不正常;最好将不用的IO口设置为三态5. USB-blaster坏了,或者JTAG通信的信号噪声太大JTAG的端口需要一个弱上拉电阻来抗干扰6. 确保你的sdram 既连接到CPU的指令总线也连接到CPU的数据总线31.关于DMA传输的几点说明:1memory 到 外设的传输,调用alt_dma_txchan_ioctl()时,有一个参数为alt_dma_tx_only_on等2调用alt_dma_txchan_send函数时,在传输结束前就返回一个值,如果此值为负的话,说明发送请求失败。正确传输结束后,调用done函数。3 接收函数alt_dma_rxthan_prepare类似上面的1和24传输结束,有两种可能:数据传完或者end of packet(要预先使能)5SOPCbuilder中例化时要制定哪些可以访问DMA的主端口,DMA的avalon slave端口要接cpu。实际传输的最大数可以帮助确定设置的位数6alt_dma_txchan_ioctl用于控制dma的一些工作性质,使用多的话可以用信号量等来“抢占”7dma传输最小应该传4字或者其倍数。32. 1. 建立CPU时,下面的那个HardWare Multiply里面可以选Embedded Multipliers,Logic Elements,None,这三个选项有什么区别呀?答: Embedded Multipliers,使用专门的内嵌硬件乘法单元(不可编程,仅能做乘法,且乘法速度最快),不是RAM。 Logic Elements,使用逻辑单元也就是FPGA中的查找表(速度较慢)。None,那就是不要声长硬件乘法器了,这是只能通过软件模拟乘法,速度最慢。33.下载是出现“not responding”错误的又一点发现:答:在设计的过程中,经常使用板子上内部的两个晶振作为CPU或者有些信号的时钟,而且习惯用osc_27和osc_50命名。在绑定管脚时又经常导入一个 CSV文件,没有手动一一绑定,而在那个CSV文件中晶振管脚名分别为CLOCK_27,CLOCK_50,这样系统的CPU根本就没有绑定管脚,不出错才怪。把名称改为CLOCK_27,CLOCK_50,重新编译下载就可以了。34. 安装了NIOS2linux-1.4之后,为什么在New-Project时并没有出现Microtronx NIOS II选项呢?答:这个问题好像难倒过很多人,其实在运行nios2linux-1.4安装的第一步,里面有个提示:Information Regarding the Installation ProcedureIMPORTANT: Please ensure that you specify the correct path for the Altera Nios II Kit installation directory and the Cygwin root directory. The typical Altera Nios II Kit directory is:c:alterakits ios2The typical Cygwin root directory is:c:alteraquartus50 incygwin问题的关键就是上面的路径不正确。对于Nios 5.1和6.0的路径分别为nios_51和nios_60,都不是nios2,所以安装后找不到模板工程很正常。但它的一些必要文件又确实是安装在了 nios_51或nios_60中。我也遇到了过同样的问题,想到了一个简单的方法可以解决:1.把文件夹nios_51或nios_60改为nios2,启动Nios II,就可以看到所需模板工程。2.退出Nios II,把文件夹名还原。3.再次启动Nios II,你会发现模板工程依然还在。35Nios II汉化解决方案答:NIOS II IDE实际上是在eclipse平台上的一个应用插件,而Eclipse 是一个开放源代码的软件开发项目,专注于为高度集成的工具开发提供一个全功能的、具有商业品质的工业平台。可访问如下网站:1.Eclipse官方网站/2.中国Eclipse社区/bbs/index.php下面介绍如何汉化NIOS II(实际上只是汉化了eclipse)1.打开NIOS II,点help-about NIOS II IDE,会看到有关NIOS的版权信息。可以看到NIOS II 5.1的版本上的Eclipse版本是Eclipse 3.0.12.在Eclipse官方网站上找到Eclipse 3.0.1多国语言包NLpack-eclipse-SDK-3.0.x-win32.zip3.在NIOS II的安装目录中,你可以找到一个eclipse目录,如:C:alterakits ios2 ineclipse,在这个目录下新建2个文件夹language和links4.将NLpack1-eclipse-SDK-3.1.1a-win32.zip解压到language目录下5.在links文件夹下用记事本新建一个文件,取名为link.link(必须是此扩展名)6.在language.link 里输入代码如下: path=c:/altera/kits/nios2/bin/eclipse/language 保存此文件。7.汉化完成。说明,这种方法只是汉化了eclipse,对NIOS II没有汉化,但这个软件已经大部分为中文了,因为NIOS II 只是eclipse一个插件。对于我们新手来说这还是必要的。 Cannot start device configuration because no programming options have been selected for device chainMessage seen in: the Quartus II Programmer, after clicking Start. Suggested solution: Make sure there is a check in the Program/Configure box. Click the box to add (or remove) the check-mark. See our tutorial for details. Confirm Perspective Switch - This kind of launch is configured to open the Debug perspective when it suspends. - Do you want to open this perspective now?Message seen in: a message-box in the Nios II IDE, when you start the debugger.Discussion and suggested solution: This is not really an error. Check the box Remember my decision, then click Yes in response to this message. The Debug perspective has other sub-windows than the workspace perspective; several of these new sub-windows are essential for a successful debugging session. /cygdrive/c/altera/72/nios2eds/components/altera_hal/build/gtf_rules.mk:81: * multiple target patterns. Stop.Message seen in: the console window of the Nios II IDE, when you try to build or run your project.Discussion and suggested solution: When you started Nios II IDE, perhaps you selected a workspace path in My Documents, which is a Windows-alias for a path with spaces in it. The Nios II IDE cannot handle paths with spaces. Select File - Switch Workspace and select a workspace location with no spaces in the path. See our tutorial for recommendations.Alternatively, when you created your project, perhaps you selected a PTF file in My Documents, which is a Windows-alias for a path with spaces in it. The Nios II IDE cannot handle paths with spaces. Move or copy your PTF file to another location, preferably the workspace directory. See our tutorial for details. Error! : Failed memory access in component cpu - Unable to read data from invalid memory address 0x0 Error! : Simulation failed in component cpu at instruction 5004016 (PC=0x0 instr =0x00000000).Message seen in: the console window of the Nios II IDE, when you try to run your project in the Instruction Set Simulator.Discussion and suggested solution: There could be several reasons for this message. If you use interrupts with an assembly-language initialization, please double-check that you really did copy the stub, and that you enabled interrupts with the correct index. In any assembly-language subroutine, please check that you saved the return-address register ra (r31) before calling any other subroutine, and that you restored the original value of ra before executing the ret instruction. In C-language code, perhaps you followed an unitialized pointer (using the * operator). Errors exist in a required project. Continue launch?Message seen in: a message-box in the Nios II IDE, when you try to run your project.Discussion and suggested solution: Always click No in response to this message. The message only appears when there is a fatal problem with some program you have written. Compilation, assembly or linking failed, so there is nothing to run. Check the console window for further information, and then check your source code files. Once again: Always click No in response to this message! Illegal project location. Directory is not writable: C:Documents and SettingssomeusernameMy DocumentsMessage seen in: the Nios II IDE. This message can appear at the top of the dialog-box when you create a new project in the Nios II IDE. Discussion and suggested solution: When you started Nios II IDE, perhaps you selected a workspace path in My Documents, which is a Windows-alias for a path with spaces in it. The Nios II IDE cannot handle paths with spaces. Select File - Switch Workspace and select a workspace location with no spaces in the path. See our tutorial for recommendations. In function alt_main: undefined reference to mainMessage seen in: the console window of the Nios II IDE, when you try to build or run your project. Discussion and suggested solution: You must have a function or label called main. Ifmain is written in assembly-language, the label main must be declared global with the .global directive. See lab nios2time for examples. local label 3 (instance number 1 of a fb label) is not definedMessage seen in: the console window of the Nios II IDE, when you try to build or run your project. Discussion and suggested solution: You have typed 3f instead of 0x3f. The assembler believes that 3f is a local label (a feature which is not used in this course). The 0x before a hexadecimal constant is strictly required. If you leave out the 0x, the assembler will not do what you want. A similar error would be seen if you typed 3b instead of 0x3b. make: * No rule to make target C:/Documents, needed by .Message seen in: the console window of the Nios II IDE, when you try to build or run your project.Discussion and suggested solution: When you started Nios II IDE, perhaps you selected a workspace path in My Documents, which is a Windows-alias for a path with spaces in it. The Nios II IDE cannot handle paths with spaces. Select File - Switch Workspace and select a workspace location with no spaces in the path. See our tutorial for recommendations.Alternatively, when you created your project, perhaps you selected a PTF file in My Documents, which is a Windows-alias for a path with spaces in it. The Nios II IDE cannot handle paths with spaces. Move or copy your PTF file to another location, preferably the workspace dir
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 工业大数据与机器学习的结合策略
- 4s店保洁管理制度
- 机电作业安全管理制度
- 标准溶液配制管理制度
- 校内快递安全管理制度
- 校园七防工程管理制度
- 校园安全设施管理制度
- 校园武术学员管理制度
- 校园租赁车辆管理制度
- 校园进入车辆管理制度
- 奇妙的植物世界
- 中文版匹兹堡睡眠质量指数量表 (PSQI)1-2-10
- 供应商纠正措施表
- 路灯控制器的设计与仿真
- 3D打印技术3Done电子教案(续)
- 新生入学报到证明(新生)
- 来料质量异常反馈单
- n系列蒸汽型溴化锂吸收式冷水机组f.ju.1
- 会展策划与管理高水平专业群建设项目建设方案
- 2021-2022学年江苏省扬州市高一下学期期末地理试题
- 司炉岗位应急处置卡(燃气)参考
评论
0/150
提交评论