工具与软件:
大家好!
但我总是得到主机唤醒未启用的输出。 但我找不到任何文档、如何配置设备树来设置此中断。 是否有我漏掉的模板? 有人可以帮您解决这个问题吗? 我尝试将以下内容设置到蓝牙 UART 节点中的蓝牙子节点:
&uart1 { /* Bluetooth UART */
pinctrl-names = "default";
pinctrl-0 = <&pinctrl_uart1>;
status = "okay";
assigned-clocks = <&clk IMX8MM_CLK_UART1>;
assigned-clock-parents = <&clk IMX8MM_SYS_PLL1_80M>;
fsl,uart-has-rtscts;
bluetooth {
compatible = "ti,cc33xx-bt";
cc33xx-supply = <&cc33xx_supply>;
max-speed = <115200>;
interrupt-parent = <&gpio2>;
interrupts = <8 IRQ_TYPE_LEVEL_LOW>;
irq-gpio = <&gpio2 8 GPIO_ACTIVE_LOW>;
interrupt-names = "host-wakeup";
};
};
非常感谢。
SJ