资源简介
1、本组LabVIEW实验例程通过开发板的USB接口进行通信,请使用USB线,连接开发板和电脑
2、因为采用的是USB转串口技术,所以需要安装STM32虚拟串口驱动程序
3、在使用LabVIEW之前,请安装VISA驱动程序。在本光盘以下目录:NI-VISA4.4.1驱动程序
4、STM32下位机程序,是基于ST公司的V3.2.1固件库编写的
5、如果使用JLINK仿真器下载STM32程序,那么在下载完成之后,请拔掉JLINK连接到开发板的20pin排线,然后插上USB线,电脑才能正常找到STM32虚拟串口
6、需要注意的是,STM32程序的优化级别要设置为:Level
代码片段和文件信息
/**************************************************************************//**
* @file core_cm3.c
* @brief CMSIS Cortex-M3 Core Peripheral Access layer Source File
* @version V1.30
* @date 30. October 2009
*
* @note
* Copyright (C) 2009 ARM Limited. All rights reserved.
*
* @par
* ARM Limited (ARM) is supplying this software for use with Cortex-M
* processor based microcontrollers. This file can be freely distributed
* within development tools that are supporting such ARM based processors.
*
* @par
* THIS SOFTWARE IS PROVIDED “AS IS“. NO WARRANTIES WHETHER EXPRESS IMPLIED
* OR STATUTORY INCLUDING BUT NOT LIMITED TO IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE.
* ARM SHALL NOT IN ANY CIRCUMSTANCES BE LIABLE FOR SPECIAL INCIDENTAL OR
* CONSEQUENTIAL DAMAGES FOR ANY REASON WHATSOEVER.
*
******************************************************************************/
#include
/* define compiler specific symbols */
#if defined ( __CC_ARM )
#define __ASM __asm /*!< asm keyword for ARM Compiler */
#define __INLINE __inline /*!< inline keyword for ARM Compiler */
#elif defined ( __ICCARM__ )
#define __ASM __asm /*!< asm keyword for IAR Compiler */
#define __INLINE inline /*!< inline keyword for IAR Compiler. Only avaiable in High optimization mode! */
#elif defined ( __GNUC__ )
#define __ASM __asm /*!< asm keyword for GNU Compiler */
#define __INLINE inline /*!< inline keyword for GNU Compiler */
#elif defined ( __TASKING__ )
#define __ASM __asm /*!< asm keyword for TASKING Compiler */
#define __INLINE inline /*!< inline keyword for TASKING Compiler */
#endif
/* ################### Compiler specific Intrinsics ########################### */
#if defined ( __CC_ARM ) /*------------------RealView Compiler -----------------*/
/* ARM armcc specific functions */
/**
* @brief Return the Process Stack Pointer
*
* @return ProcessStackPointer
*
* Return the actual process stack pointer
*/
__ASM uint32_t __get_PSP(void)
{
mrs r0 psp
bx lr
}
/**
* @brief Set the Process Stack Pointer
*
* @param topOfProcStack Process Stack Pointer
*
* Assign the value ProcessStackPointer to the MSP
* (process stack pointer) Cortex processor register
*/
__ASM void __set_PSP(uint32_t topOfProcStack)
{
msr psp r0
bx lr
}
/**
* @brief Return the Main Stack Pointer
*
* @return Main Stack Pointer
*
* Return the curren
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 20715 2010-02-10 13:40 12、LabVIEW实验例程(STM32 USB)\10、LabVIEW波形回放\12864 LCD显示的波形.JPG
文件 1174266 2010-02-10 13:44 12、LabVIEW实验例程(STM32 USB)\10、LabVIEW波形回放\labview显示的波形.bmp
文件 14151 2011-03-10 10:45 12、LabVIEW实验例程(STM32 USB)\10、LabVIEW波形回放\LabVIEW波形回放.vi
文件 3006 2008-12-16 22:11 12、LabVIEW实验例程(STM32 USB)\10、LabVIEW波形回放\lv.txt
文件 7919 2011-07-26 09:48 12、LabVIEW实验例程(STM32 USB)\1、LabVIEW波形显示--数字电压表\LabVIEW\Convert Hex String to ASCII Hex.vi
文件 17868 2011-08-01 22:05 12、LabVIEW实验例程(STM32 USB)\1、LabVIEW波形显示--数字电压表\LabVIEW\find com.vi
文件 47955 2010-07-18 20:35 12、LabVIEW实验例程(STM32 USB)\1、LabVIEW波形显示--数字电压表\LabVIEW\LabVIEW波形显示 - 数字电压表.PNG
文件 53240 2011-08-11 10:26 12、LabVIEW实验例程(STM32 USB)\1、LabVIEW波形显示--数字电压表\LabVIEW\main.vi
文件 403 2010-07-18 17:42 12、LabVIEW实验例程(STM32 USB)\1、LabVIEW波形显示--数字电压表\LabVIEW\readme.txt
文件 25160 2009-01-05 23:05 12、LabVIEW实验例程(STM32 USB)\1、LabVIEW波形显示--数字电压表\LabVIEW\数码管字体\NI7SEG.TTF
文件 49588 2009-01-05 23:05 12、LabVIEW实验例程(STM32 USB)\1、LabVIEW波形显示--数字电压表\LabVIEW\数码管字体\NISYSTEM.TTF
文件 2378 2010-10-10 14:59 12、LabVIEW实验例程(STM32 USB)\1、LabVIEW波形显示--数字电压表\STM32\inc\hw_config.h
文件 2842 2010-07-05 16:00 12、LabVIEW实验例程(STM32 USB)\1、LabVIEW波形显示--数字电压表\STM32\inc\platform_config.h
文件 3438 2011-07-26 09:43 12、LabVIEW实验例程(STM32 USB)\1、LabVIEW波形显示--数字电压表\STM32\inc\stm32f10x_conf.h
文件 2339 2011-08-26 10:21 12、LabVIEW实验例程(STM32 USB)\1、LabVIEW波形显示--数字电压表\STM32\inc\stm32f10x_it.h
文件 8738 2010-07-05 16:00 12、LabVIEW实验例程(STM32 USB)\1、LabVIEW波形显示--数字电压表\STM32\inc\usb_conf.h
文件 2939 2010-07-05 16:00 12、LabVIEW实验例程(STM32 USB)\1、LabVIEW波形显示--数字电压表\STM32\inc\usb_desc.h
文件 3903 2010-07-05 16:00 12、LabVIEW实验例程(STM32 USB)\1、LabVIEW波形显示--数字电压表\STM32\inc\usb_istr.h
文件 3491 2010-07-05 16:00 12、LabVIEW实验例程(STM32 USB)\1、LabVIEW波形显示--数字电压表\STM32\inc\usb_prop.h
文件 2246 2010-07-05 16:00 12、LabVIEW实验例程(STM32 USB)\1、LabVIEW波形显示--数字电压表\STM32\inc\usb_pwr.h
文件 17273 2010-07-05 15:59 12、LabVIEW实验例程(STM32 USB)\1、LabVIEW波形显示--数字电压表\STM32\Libraries\CMSIS\CM3\CoreSupport\core_cm3.c
文件 85714 2010-07-05 15:59 12、LabVIEW实验例程(STM32 USB)\1、LabVIEW波形显示--数字电压表\STM32\Libraries\CMSIS\CM3\CoreSupport\core_cm3.h
文件 19836 2010-07-05 15:59 12、LabVIEW实验例程(STM32 USB)\1、LabVIEW波形显示--数字电压表\STM32\Libraries\CMSIS\CM3\DeviceSupport\ST\Release_Notes_for_STM32F10x_CMSIS.html
文件 15761 2010-07-05 15:59 12、LabVIEW实验例程(STM32 USB)\1、LabVIEW波形显示--数字电压表\STM32\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\arm\startup_stm32f10x_cl.s
文件 15498 2010-07-05 15:59 12、LabVIEW实验例程(STM32 USB)\1、LabVIEW波形显示--数字电压表\STM32\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\arm\startup_stm32f10x_hd.s
文件 12371 2010-07-05 15:59 12、LabVIEW实验例程(STM32 USB)\1、LabVIEW波形显示--数字电压表\STM32\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\arm\startup_stm32f10x_ld.s
文件 13651 2010-07-05 15:59 12、LabVIEW实验例程(STM32 USB)\1、LabVIEW波形显示--数字电压表\STM32\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\arm\startup_stm32f10x_ld_vl.s
文件 12760 2010-07-05 15:59 12、LabVIEW实验例程(STM32 USB)\1、LabVIEW波形显示--数字电压表\STM32\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\arm\startup_stm32f10x_md.s
文件 14068 2010-07-05 15:59 12、LabVIEW实验例程(STM32 USB)\1、LabVIEW波形显示--数字电压表\STM32\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\arm\startup_stm32f10x_md_vl.s
文件 15950 2010-07-05 15:59 12、LabVIEW实验例程(STM32 USB)\1、LabVIEW波形显示--数字电压表\STM32\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\arm\startup_stm32f10x_xl.s
............此处省略2507个文件信息
- 上一篇:99彩时时彩整站带数据源码.rar
- 下一篇:Linux c编程一站式学习中文版
相关资源
- NRF24L01(2.4G射频)可用例程
- USB 2.0 原理与工程开发 PDF版
- Keil.STM32F1xx_DFP.2.3.0 支持包.rar
- STM32F103C8T6+SPWM三相六路互补输出+死区
- Stm32CubeMX中文说明书
- Keil.STM32F1xx_DFP.2.3.0安装包和说明书.
- USB3.0 CYUSB3014开发板资料,含原理图,
- 零死角玩转STM32—F103霸道.pdf
- stm32f4xx+freeRTOS+LWIP移植
- USBZ转TTLch340
- STM32F4可调电子时钟系统课程设计
- USBCAN二次开发资料.rar
- STM32数字示波器源码+数字信号处理教
- stm32f4中用SD卡存储DCMI的图像
- stm32—f103
- 贪吃蛇.zip
- STM32自学笔记。蒙博宇
- STM32 OV2640 ESP8266图像传输
- stm32f407开发板实现485串口modbus协议通
- opus编解码移植stm32f407
- stm32f103c8t6移植RT-Thread 之建立工程
- 通过USB串口传入数据实现模拟定位(
- STM32F4开发指南-库函数版本_V1.1
- STM32_HAL+串口+DMA发送和不定长度数据接
- STM32F103 UC/OS-II关于任务操作的系列C程
- 国外比较流行的步进电机STM32控制代码
- windows驱动程序WDF开发+WDF USB驱动开发
- STM32智能车舵机控制,电磁寻迹,带滤
- STM32F407,18电赛A题,非接触式电流检
- 基于STM32的数字示波器设计
评论
共有 条评论