关于STM32 SPI NSS的讨论


NSS分为内部引脚和外部引脚。
NSS外部引脚可以作为输入信号或者输出信号,
输入信号一般用作硬件方式从机的片选,
而输出信号一般用于主SPI去片选与之相连的从SPI。
NSS从设备选择有两种模式:
1、软件模式
可以通过设置SPI_CR1寄存器的SSM位来使能这种模式,当它为1时,NSS引脚上的电平由SSI决定。
在这种模式下NSS外部引脚可以用作它用,而内部NSS信号电平可以通过写SPI_CR1的SSI位来驱动。
2、硬件模式两种方式:
(1)对于主SPI,NSS可以直接接高电平,对于从SPI,可以直接接低电平。
(2)当STM32F10xxx工作为主SPI,并且NSS输出已经通过SPI_CR2寄存器的SSOE位使能,
这时主机的NSS讲作为输出信号,引脚信号被拉低,所有NSS引脚与这个主SPI的NSS引脚相连
并配置为硬件NSS的STM32F10xxx SPI设备,将自动变成从SPI设备。
此时两个的NSS信号线可以接个上拉电阻直连。
按照标准的SPI协议,当SPI被配置为主机模式后,通过SPI对从设备进行操作时,
其NSS应该自动置低,从而选中(使能)从设备;
一旦不对从设备进行操作,NSS立刻置为高。
但是,我在实际调试过程中却发现:STM32 SPI NSS无法自动实现跳变。
一旦SPI初始化完成并使能SPI,NSS立刻置低,然后保持不变。
这个问题一直无法解决,直到我在ST官方论坛上看到国外有些技术人员也在讨论这个问题,
他们得出的结论是:STM32 SPI NSS无法自动跳变。
ST官方技术人员也证实:
STM32 SPI NSS是不会自动置位和复位的。按照官方说法,ST已经将其列入了改进计划。
对于这个问题,可以采用下面的方法解决:
在SPI初始化时,采用NSS soft模式,然后使能NSS输出功能。
从而将NSS当做GPIO使用,通过软件set和reset来实现NSS的置位和复位。
通过将NSS配置为GPIO,在通过SPI操作从设备时,就可以通过软件来选中和释放从设备了。
虽然比起硬件自动置位要麻烦,但问题毕竟解决了。
Slave select (NSS) pin management
There are two NSS modes:
● Software NSS mode:
this mode is enabled by setting the SSM bit in the SPI_CR1 register (see Figure 209).
In this mode, the external NSS pin is free for other application uses
and the internal NSS signal level is driven by writing to the SSI bit in the SPI_CR1 register.
● Hardware NSS mode: there are two cases:
– NSS output is enabled:
when the STM32F20xxx is operating as a Master and the NSS output is enabled
through the SSOE bit in the SPI_CR2 register, the NSS pin is driven low and all the NSS pins
of devices connected to the Master NSS pin see a low level
and become slaves when they are configured in NSS hardware mode.
When an SPI wants to broadcast a message, it has to pull NSS low to inform all others
that there is now a master for the bus.
If it fails to pull NSS low, this means that there is another master communicating,
and a Hard Fault error occurs.
– NSS output is disabled: the multimaster capability is allowed.
当SPI配置为hard模式后,通过检测NSS可以实现的是自身主机和从机模式的切换,
而不是大多数人所认为的自动NSS。。。
也就是说:在一个多SPI系统中,STM32 SPI通过NSS检测,一旦发现系统中无NSS低信号,自己就输出低,从而成为主机;
当系统中有NSS低信号时(及已经有其它SPI宣布为主机),自己就配置为从机。
所谓的hard模式的NSS,实际就是为了实现多机间通信的。
STM32 SPI NSS discussion
About the the STM32 SPI NSS problem of explore.
The STM32 SPI Reference Manual in the schematic given as follows:
Accordance with the standard SPI protocol, when the SPI is configured for master mode,
the SPI operation from the device, the NSS should be automatically set low,
so as to select (enable) from the device; Once we do not operate from the device, NSS immediately set is high.
However, I was found in the actual process of debugging:
STM32 SPI NSS does not automatically transition.
Once the the SPI initialization is complete make can SPI NSS immediately set low,
and then remain unchanged.
This problem can not be resolved, some foreign technicians are also discussing this issue
until I see the ST official forum, They concluded: the STM32 SPI NSS can not be automatically transition.
The official ST technicians also confirmed:
the STM32 SPI NSS is not automatically set and reset.According to the official statement,
ST has included in the improvement plan.
For this problem, you can use the following solutions:
SPI initialization the the NSS soft mode, and then enable the NSS output function.
NSS NSS set and reset as GPIO, set and reset by software.
The code is as follows:
/ * SPI1 configuration ---------------------------------------------- -------- * /
SPI_InitStructure.SPI_Direction = SPI_Direction_1Line_Tx;
SPI_InitStructure.SPI_Mode = SPI_Mode_Master;
SPI_InitStructure.SPI_DataSize = SPI_DataSize_8b;
SPI_InitStructure.SPI_CPOL = SPI_CPOL_Low;
SPI_InitStructure.SPI_CPHA = SPI_CPHA_2Edge;
SPI_InitStructure.SPI_NSS = SPI_NSS_Soft; / /
SPI_InitStructure.SPI_BaudRatePrescaler = SPI_BaudRatePrescaler_4;
SPI_InitStructure.SPI_FirstBit = SPI_FirstBit_MSB ;/ / SPI_FirstBit_MSB;
SPI_InitStructure.SPI_CRCPolynomial = ;
SPI_Init (SPI1, & SPI_InitStructure); / * Enable SPI1.NSS as a GPIO * /
SPI_SSOutputCmd (SPI1, ENABLE); / * Configure PA. (NSS) ----------------------------------------- --- * /
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_4;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_Init (GPIOA, & GPIO_InitStructure);
Through the NSS configuration the GPIO, from the device through the SPI operation
can be software selected and released from the device.
Although than the hardware automatically set to trouble, but after all solved.
When the SPI is configured as a hard mode can be achieved by detecting the NSS own host and slave mode switch,
rather than automatically NSS most people think. . .
In other words:
a multi-SPI system STM32 SPI NSS testing, once the system NSS low signal output low, thus becoming the host;
NSS low signal system (and other SPI announced host), configured as a slave.
The so-called hard mode NSS is in fact in order to achieve multi-machine communication.
Summary:
The words too literally scary, Manual must be carefully read.
The STM32 SPI NSS regardless of the configuration for soft or hard are not automatically set, but it is required in most applications. As the ST forum RichardE said: "Everything would be done by the peripheral. Fire and forget."
Oh, interesting argument: Fire and forget! ~ ~ ~ ~
The STM32 SPI nss Big Secret
On the NSS, I have a headache for it for a long time, look at the manual to see the program,
watch videos, see post, I have not completely understood it.
Had a few want to solve it, but died, only to abandon their own written notes.
Also so much concern about the lack of blood, angry, resulting toothache, chapped lips.
Simply a pain. At that time, I really think I may never do not understand.
So forget it. The teacher said, let me do first technology, go pursuit of principle,
but then I took over the ADXL345 acceleration sensor with SPI control task
and a combination of a full-duplex SPI instance, was thus slowly mystery surfaced by learning debugging techniques,
and finally understood. SPI is really complicated, but complex and interesting.
I write as a rookie, I understand the STM32 SPI NSS. I hope you will correct me.
The NSS in the end is how it? The answer is the chip select.
Master and during SPI communication from the device, the device has a CS chip select signal, active low,
we usually must be connected to the NSS from the CS.
But just in general so that we generally understand what's going on,
a lot of things about the NSS, there are a lot of things, let me explain.
Look at the input and output mode.
Can be entered for each SPI NSS can also output. So-called input the NSS level signal to itself,
the so-called output the NSS level signal sent to the slave.
Configured as an output, or output, we the SSOE bit of through SPI_CR2 register.
SSOE 1 and SPI is in master mode control, NSS output low is pulled low,
the NSS pin so when the other SPI devices connected to it, inevitably received low,
the chip select , have become from the device. The output of the NSS introduced here
The following describes the input of the NSS.
We all know that the NSS input hardware inputs and software is divided into the control input two modes,
then you start from these two modes, to uncover the veil.
Let me talk about the software mode.
1 for SPI master
set SPI_CR1 register SSM and SSI bit the SSM to 1 to
enable software management. NSS internal and external pin.
At this time, the external pin reserved for him (can be used as GPIO driver from the device's chip select signal).
Internal NSS pin level driven by the register SPI_CRL SSI bit.
SSI bit to 1 in order to enable the NSS level is high.
At this time, can not help but question why the main device's internal NSS level 1?
STM32 manual, to keep the MSTR and SPE bit is 1, that is to keep the host mode,
only NSS received a high level signal, the two in order to maintain the set that is
to keep the SPI for STM32 the host state, the NSS internal input level must be high.
Of course, here in hardware mode as well.
2 SPI slave
The to host own internal NSS high level resolved, then the SPI chip select active low slave NSS have to solve ah.
If the Slave Select the STM32 an SPI, such as host elected SPI1 slave elected SPI2, will have the following operation
The manual says the NSS pin must be connected to a low-level signal before completing the byte transfer.
The SSM bit software mode, you need to set the SPI_CR1 register (software management enabled)
and SSI bit 0 is really the case. SSI must be 0, which is the SPI2 sheet preferably is low, then the chip select successful.
Slave SPI chip, for example, that the ADXL345 acceleration sensor.
Well, we can There are two ways
A method is the CS of the chip is connected to GND,
another method, a GPIO port to output a low level to control the CS Chip Select success.
This GPIO can be any one GPIO port, of course, we mentioned above SPI Host Configuration software mode,
the external NSS pin reserved for him, it is a GPIO, we can also use it.
At this time, we can set the push-pull output is low,
and then follow the machine line is connected to the CS, then you can chip select from the chip.
Say that the hardware mode.
For the host, the NSS can be connected directly to the high, slave, NSS low.
Of course, we mentioned above, when a host SSOE 1, the master work in output mode,
and NSS is pulled low, we want the slave select, as long as the CS is connected to the host NSS CSautomatically pulled low.
This is ST designed STM32 SPI NSS workflow.
The following examples to introduce.
We introduce a STM32 on SPI1 and SPI2 full-duplex communication procedures,
specific procedures, you can add QQ 843538946 asked me to.
Only describes the the SPI configuration program.
/ * SPI1 Config ---------------------------------------------- --------------- * /
SPI_InitStructure.SPI_Direction = SPI_Direction_2Lines_FullDuplex;
SPI_InitStructure.SPI_Mode = SPI_Mode_Master, / / set SPI1-based mode, set the SSI 1
SPI_InitStructure.SPI_DataSize = SPI_DataSize_8b;
SPI_InitStructure.SPI_CPOL = SPI_CPOL_Low;
SPI_InitStructure.SPI_CPHA = SPI_CPHA_2Edge;
SPI_InitStructure.SPI_NSS = SPI_NSS_Soft; / / set the SSM, software management
SPI_InitStructure.SPI_BaudRatePrescaler = SPI_BaudRatePrescaler_4;
SPI_InitStructure.SPI_FirstBit = SPI_FirstBit_LSB;
SPI_InitStructure.SPI_CRCPolynomial = 7;
SPI_Init (SPI1, & SPI_InitStructure);
/ * SPI2 Config ---------------------------------------------- --------------- * /
SPI_InitStructure.SPI_Mode = SPI_Mode_Slave ;/ / set here SPI2 mode SSI
/ / Because SPI2 and SPI1 use the same SPI_InitStructure, so SSM bit is 1
SPI_Init (SPI2, & SPI_InitStructure);
For SPI2 the configuration, and SPI1 with the same structure, just mode should be changed
and SSI on the line, such as software enable, as well as the timing of what do not change.
SuchSPI1 and SPI2 configuration to.
Later you can transfer data.
关于STM32 SPI NSS的讨论的更多相关文章
- The STM32 SPI and FPGA communication
The STM32 SPI and FPGA communication STM32 spi bus communication SPI bus in the study, the protocol ...
- HOWTO: Use STM32 SPI half duplex mode
HOWTO: Use STM32 SPI half duplex mode I’ve got my hands onto some STM32F030F4P6 ARM-Cortex M0 proces ...
- STM32—SPI读写FLASH
目录 FLASH简介 W25Q64 W25Q64简介 FLASH控制指令 FLASH内部存储结构 代码讲解 读取芯片ID 发送写使能信号 等待FLASH不忙 擦除扇区 写入数据 读取数据 注 FLAS ...
- STM32 SPI接口的NSS引脚
SPI_NSS 设置 NSS 信号由硬件( NSS 管脚)还是软件控制,这里我们一般通过软件控制 NSS ,而不是硬件自动控制,所以选择 SPI_NSS_Soft 选择了软件NSS之后,引脚NSS就可 ...
- stm32 SPI介绍和配置
SPI是一种高速的,全双工同步的通信总线,在芯片管脚上占用了四根线,节约了芯片的管脚,同时为PCB的布局节省了空间,提供了方便,因此越来越多的芯片集成了这种通信协议,STM32也就有了SPI接口. 有 ...
- STM32—SPI详解
目录 一.什么是SPI 二.SPI协议 物理层 协议层 1.通讯时序图 2.起始和停止信号 3.数据有效性 4.通讯模式 三.STM32中的SPI 简介 功能框图 1.通讯引脚 2.时钟控制逻辑 3. ...
- STM32 SPI DMA 的使用
一是想总结一下SPI总线的特点与注意点,二是总结一下SPI DMA的使用 一.SPI信号线说明 通常SPI通过4个引脚与外部器件相连: MISO:主设备输入/从设备输出引脚.该引脚在从模式下发送数据, ...
- STM32 SPI 发送第一个数据不成功问题
STM32的标准库,跟HAL库都是很实用的, 在使用SPI库的过程中一定要注意时序的问题. 我在调试SPI过程中,调试了两个IC,都是用HAL库, 第一个IC没出问题,第二个IC出现了第一次发送数据不 ...
- STM32.SPI(25Q16)
1.首先认识下W25Q16DVSIG, SOP8 SPI FLASH 16MBIT 2MB(4096个字节) (里面可以放字库,图片,也可以程序掉电不丢失数据放里面) 例程讲解: ① 1.用到SPI ...
随机推荐
- 20155306 2016-2017-2 《Java程序设计》第八周学习总结
20155306 2016-2017-2 <Java程序设计>第八周学习总结 教材学习内容总结 第十五章 通用API 15.1 日志 java.util.loggging包提供了日志功能相 ...
- 20145226 《Java程序设计》第七周学习总结
教材学习内容总结 学习目标 · 了解Lambda语法 · 了解方法引用 · 了解Fucntional与Stream API · 掌握Date与Calendar的应用 · 会使用JDK8新的时间API ...
- iOS 在viewDidLayoutSubviews自动布局crash问题
1 viewDidLayoutSubviews改成viewWillLayoutSubviews在iOS7上就不会crash了2 viewDidLoad中还需要设置self.edgesForExtend ...
- idea中搜狗输入法不跟随光标,看不到输入的字
好久没在windows上开发了,今天遇到一个比较坑的问题: 最新版idea,输入法都是最新的;但是idea里面输入字,看不到自己输入的是什么字,好坑... 在外面可以看到输入什么字说明与输入法无关, ...
- Python常见面试(习题)——水仙花数
今天,给大家分享一个习题. 用python输出100到1000以内的水仙花数. 相信很多小伙伴都听到过,或者遇到过这个题目. 那么今天就来带大家做一做这道题. 首先,我们要知道什么是水仙花数, (@_ ...
- 动态规划(dp)专题
航线设置 问题描述在美丽的莱茵河畔,每边都分布着N个城市,两边的城市都是唯一对应的友好城市,现需要在友好城市间开通航线以加强往来,但因为莱茵河常年大雾,如果开设的航线发生交叉就有可能出现碰船的现象 ...
- MySQL 数据库性能优化之SQL优化【转】
优化目标 减少 IO 次数IO永远是数据库最容易瓶颈的地方,这是由数据库的职责所决定的,大部分数据库操作中超过90%的时间都是 IO 操作所占用的,减少 IO 次数是 SQL 优化中需要第一优先考虑, ...
- 【TensorFlow】获取object detection API训练模型的输出坐标
如下图,谷歌开源的object detection API提供了五种网络结构的fine-tuning训练权重,方便我们针对目标检测的需求进行模型训练,本文详细介绍下导出训练模型后,如何获得目标检测框的 ...
- android 跳转到应用通知设置界面的示例
4.4以下并没有提过从app跳转到应用通知设置页面的Action,可考虑跳转到应用详情页面,下面是直接跳转到应用通知设置的代码: if (android.os.Build.VERSION.SDK_IN ...
- Maven 命令及其他备忘
1.与eclipse中右键 Maven -> Update Project 对应的命令行命令: mvn clean install -e -U -e详细异常,-U强制更新