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 ...
随机推荐
-
Centos7下安装mono3.10.0
mono 3.10.0 正式发布:性能进一步改进,以前已经写过一篇 Centos 7.0 安装Mono 3.4 和Jexus 5.6.下面我们在CentOS 7上通过源码安装Mono 3.10, 需 ...
-
Linux下查看Nginx安装目录、版本号信息?
Linux环境下,怎么确定Nginx是以那个config文件启动的? 输入命令行: ps -ef | grep nginx 摁回车,将出现如下图片: master process 后面的就是 ngi ...
-
Linux内核分析:dup、dup2的实现
一.首先需要看一下这两个函数的作用: #include <unistd.h> int dup(int oldfd); int dup2(int oldfd, int newfd); 根据m ...
-
C语言获取时间
转载:http://www.cnblogs.com/fzhe/archive/2012/11/06/2757858.html C语言获取系统时间的几种方式 C语言中如何获取时间?精度如何? 1 使 ...
-
Critical Log Review Checklist for Security Incidents
Critical Log Review Checklist for Security Incidents This cheat sheet presents a checklist for revie ...
-
python之路——10
王二学习python的笔记以及记录,如有雷同,那也没事,欢迎交流,wx:wyb199594 复习 a.函数可读性强,复用性强 def 函数名() 函数体 return 返回值 函数先定义后执行, b. ...
-
php开发APP接口(总结一)
一.什么是app接口:服务端与客户端的数据交互. 大部分APP接口是通过http协议通信的. http通信的三要素: URL: 通信的地址 Method:通信的方式(get | post | pu ...
-
004-restful应用构建、分布式会话、测试工具简介
一.概述 什么是rest(表述性状态转移,Representational State Transfer)是一种架构风格.他定义了创建可扩展Web服务的最佳实践. 1.Richardson成熟度模型 ...
-
C# 中使用面向切面编程(AOP)中实践代码整洁(转)
出处:https://www.cnblogs.com/chenug/p/9848852.html 1. 前言 最近在看<架构整洁之道>一书,书中反复提到了面向对象编程的 SOLID 原则( ...
-
Spring+Velocity+Mybatis入门
转自:https://blog.csdn.net/duqi_2009/article/details/47752169 一.开发工具 开发过程中使用的操作系统是OS X,关于软件安装的问题请大家移步高 ...