Other Parts Discussed in Thread: CC1310, CC2592
主题中讨论的其他器件: CSD、 CC2592
工具/软件:TI-RTOS
CC1310+SKY6615能否运行15.4堆栈? 我失败了。 是否有任何指南
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
以下是一些入门链接:
www.skyworksinc.com/.../SKY66115-11
dev.ti.com/.../index-cc13x0.html
dev.ti.com/.../index-cc13x0.html
http://www.ti.com/lit/swra528
http://www.ti.com/lit/swra527
https://e2e.ti.com/support/wireless-connectivity/sub-1-ghz/f/156/t/707818
此致、
Ryan
我修改过的代码如下所示、但 AP 仍然无法接收数据、设备无法设置网络
静态 PIN_Config palnaPinTable[]=
{
Board_PALNA_HGM | PIN_GPIO_OUTP_EN | PIN_GPIO_HIGH | PIN_PushPull
默认情况下为| PIN_DRVSTR_MAX、/*高增益模式*/
BOARD_PALNA_LNA | PIN_GPIO_OUTP_EN | PIN_GPIO_HIGH | PIN_PushPull
| PIN_DRVSTR_MAX、/* LNA 在默认情况下处于关闭状态*/
Board_PALNA_PA | PIN_GPIO_OUTP_EN | PIN_GPIO_LOW | PIN_PushPull
| PIN_DRVSTR_MAX、/* PA 默认为关闭*/
PIN_TERMINATE /*终止列表*/
};
/*!
初始化 PA/LNA
在 board_palna.h 中定义的公共函数
*
void Board_Palna_initialize (uint32_t HGM)
{
IF (HGM)
{
如果(!palnaPinHandle)
{
/*打开 PA/LNA PIN 驱动程序*/
palnaPinHandle = PIN_OPEN (&palnaPinState、palnaPinTable);
/*为 RFC GPO 设置 IO 多路复用*/
// PINCC26XX_setMux (palnaPinHandle、Board_PALNA_LNA、IOC_PORT_RFC_GPO0);
PINCC26XX_setMux (palnaPinHandle、Board_PALNA_PA、IOC_PORT_RFC_GPO1);
}
//CSD - LNA 始终处于高电平
PIN_setOutputValue (palnaPinHandle、Board_PALNA_LNA、1);
PIN_setOutputValue (palnaPinHandle、Board_PALNA_HGM、(HGM & 1));
}
}