登录
首页 » Fortran » UCOSII_SPI

UCOSII_SPI

于 2012-12-18 发布 文件大小:55KB
0 244
下载积分: 1 下载次数: 9

代码说明:

  LPC2114基于UCOSII的SPI驱动使用的例子。通过硬件SPI接口控制LED数码管显示数,中间件代码(LPC2114 SPI UCOSII the drive using examples. Hardware SPI interface to control the number of LED digital tube display, middleware code)

文件列表:

7.5-SPI总线模块
................\ARM
................\...\IRQ.inc,3887,2012-12-18
................\...\OS_CPU.H,5650,2012-12-18
................\...\Os_cpu_a.s,9932,2012-12-18
................\...\Os_cpu_c.c,16355,2012-12-18
................\Arm_Pc
................\......\PC.C,28918,2012-12-18
................\......\PC.H,3492,2012-12-18
................\......\README.txt,606,2012-12-18
................\Source
................\......\readme.txt,35,2012-12-18
................\SPI
................\...\spi.c,7817,2012-12-18
................\...\spi.h,4844,2012-12-18
................\SPI_example
................\...........\SPI_example.mcp,158895,2012-12-18
................\...........\src
................\...........\...\config.h,4828,2012-12-18
................\...........\...\INCLUDES.H,1960,2012-12-18
................\...........\...\IRQ.s,1794,2012-12-18
................\...........\...\LPC2294.h,35493,2012-12-18
................\...........\...\main.c,5530,2012-12-18
................\...........\...\mem_a.scf,1394,2012-12-18
................\...........\...\mem_c.scf,1387,2012-12-18
................\...........\...\MyFunction.c,2316,2012-12-18
................\...........\...\MyFunction.h,1619,2012-12-18
................\...........\...\OS_CFG.H,8136,2012-12-18
................\...........\...\spi.c,7817,2012-12-18
................\...........\...\spi.h,4844,2012-12-18
................\...........\...\Startup.s,10284,2012-12-18
................\...........\...\target.c,13795,2012-12-18
................\...........\...\target.h,3508,2012-12-18

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • Wind_turbine_PSCAD_V42_ref
    pscad风力发电机建模说明书,非常好的资料(pscad wind turbine modeling manual, very good material)
    2013-02-27 17:18:12下载
    积分:1
  • lid driven flow
    Lbm用于模拟顶盖驱动流 强制对流 碰撞迁移过程(LBM for lid driven flow)
    2021-03-31 22:39:08下载
    积分:1
  • mg01
    用多重网格方法求解泊松方程,偏微分方程求解(use multigrid method to solve poisson equation, pde solver)
    2009-11-10 21:45:00下载
    积分:1
  • swept-sine-vibration
    基于ANSYS APDL二次开发的航电设备的动力学扫频分析,载荷输入条件为交越频率以下为恒定位移,交越频率以上为恒定加速度。我将加速度输入转换为位移输入,将位移和加速度两段输入载荷统一按照位移载荷输入,将位移存入表数组,利用ANSYS APDL自动将扫频范围内的位移载荷存入表数组,并循环加载计算,实现了该工程结构的正弦扫频振动分析。(Kinetic sweep analysis, load input conditions of secondary development based on ANSYS APDL avionics for the crossover frequency less constant displacement, above the crossover frequency is constant acceleration. I will convert the input displacement input acceleration, displacement and acceleration loads unity in accordance with the displacement of the two input load input, the displacement of the array into the table using ANSYS APDL automatically load displacement within the sweep range of the array into the table, and cyclic loading calculated to achieve a swept sine vibration of the project structure.)
    2013-12-02 13:48:03下载
    积分:1
  • quadratic-interpolation-ID
    二次插值法求一维优化问题最优解,适合FORTRAN和优化问题初学者学习参考(Quadratic interpolation optimal solution of one-dimensional optimization problem for FORTRAN and optimization beginners to learn)
    2013-12-02 02:32:04下载
    积分:1
  • postbuckling--by-abaqus-VCCT
    postbuckling analysis of composite using abaqus-VCCT technique
    2013-09-26 09:21:20下载
    积分:1
  • 2D Unsteady convection-diffusion
    说明:  2D Unsteady convection-diffusion problem
    2020-06-22 01:20:02下载
    积分:1
  • ARM_ADexperiment
    基于uCOS+ARM9+AD,学习uCOS实时操作系统和ARM编程技术的不错的入门级参考例程(Based on uCOS+ ARM9+ AD, learning real-time operating system and ARM uCOS of good programming routine entry-level reference)
    2010-06-05 14:51:01下载
    积分:1
  • 不同阶数第一类贝塞尔函数Fortran代码
    用于计算不同阶数的第一类贝塞尔函数Fortran代码!第一类n阶BESSEL函数bessjfunction bessj(n,x)integer n,IACCreal(8) bessj,x,BIGNO,BIGNIPARAMETER (IACC=40,BIGNO=1.e10,BIGNI=1.e-10)INTEGER j,jsum,mreal(8) ax,bj,bjm,bjp,sum,tox,bessj0,bessj1if(nfloat(n))then tox=2./ax bjm=bessj0(ax) bj=bessj1(ax) do j=1,n-1    bjp=j*tox*bj-bjmbjm=bjbj=bjp end do bessj=bjelse tox=2./ax m=2*((n+int(sqrt(float(IACC*n))))/2) bessj=0. jsum=0 sum=0. bjp=0. bj=1. do j=m,1,-1    bjm=j*tox*bj-bjpbjp=bjbj=bjmif(abs(bj)>BIGNO)then  bj=bj*BIGNI  bjp=bjp*BIGNI  bessj=bessj*BIGNI  sum=sum*BIGNIendifif(jsum/=0) s
    2022-03-02 10:45:21下载
    积分:1
  • machine4
    4机发电系统 采用仿真软件建模用于多极系统分析(four machines generator PSCAD)
    2012-10-02 11:20:31下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载