- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在以 root
身份运行示例 http://mythopoeic.org/BBB-PRU/pru-helloworld/example.c我收到错误:
"prussdrv_open() failed with -1" during the execution
BBB 有 Debian 4.1
这些是使用的命令:
sudo cp EBB-PRU-Example‐00A0.dtbo /lib/firmware
echo EBB-PRU-Example > /sys/devices/platform/bone_capemgr/slots
cat /sys/devices/platform/bone_capemgr/slots
0: PF---- -1
1: PF---- -1
2: PF---- -1
3: PF---- -1
4: P-O-L- 0 Override Board Name,00A0,Override Manuf,EBB-PRU-Example
modprobe uio_pruss
dmesg
[ 195.985512] bone_capemgr bone_capemgr: part_number 'EBB-PRU-Example', version 'N/A'
[ 195.994182] bone_capemgr bone_capemgr: slot #4: override
[ 195.999703] bone_capemgr bone_capemgr: Using override eeprom data at slot 4
[ 196.006752] bone_capemgr bone_capemgr: slot #4: 'Override Board Name,00A0,Override Manuf,EBB-PRU-Example'
[ 196.039095] pruss_uio 4a300000.pruss: No children
[ 196.057144] gpio-of-helper ocp:gpio_helper: ready
[ 196.070956] bone_capemgr bone_capemgr: slot #4: dtbo 'EBB-PRU-Example-00A0.dtbo' loaded; overlay id #0
和/boot/uEnv.txt
已禁用 HDMI
EBB-PRU-Example.dts
/* Device Tree Overlay for enabling the pins that are used in Chapter 13
* This overlay is based on the BB-PRU-01 overlay
* Written by Derek Molloy for the book "Exploring BeagleBone: Tools and
* Techniques for Building with Embedded Linux" by John Wiley & Sons, 2014
* ISBN 9781118935125. Please see the file README.md in the repository root
* directory for copyright and GNU GPLv3 license information.
*/
/dts-v1/;
/plugin/;
/ {
compatible = "ti,beaglebone", "ti,beaglebone-black";
part-number = "EBB-PRU-Example";
version = "00A0";
/* This overlay uses the following resources */
exclusive-use =
"P9.11", "P9.13", "P9.27", "P9.28", "pru0";
fragment@0 {
target = <&am33xx_pinmux>;
__overlay__ {
gpio_pins: pinmux_gpio_pins { // The GPIO pins
pinctrl-single,pins = <
0x070 0x07 // P9_11 MODE7 | OUTPUT | GPIO pull-down
0x074 0x27 // P9_13 MODE7 | INPUT | GPIO pull-down
>;
};
pru_pru_pins: pinmux_pru_pru_pins { // The PRU pin modes
pinctrl-single,pins = <
0x1a4 0x05 // P9_27 pr1_pru0_pru_r30_5, MODE5 | OUTPUT | PRU
0x19c 0x26 // P9_28 pr1_pru0_pru_r31_3, MODE6 | INPUT | PRU
>;
};
};
};
fragment@1 { // Enable the PRUSS
target = <&pruss>;
__overlay__ {
status = "okay";
pinctrl-names = "default";
pinctrl-0 = <&pru_pru_pins>;
};
};
fragment@2 { // Enable the GPIOs
target = <&ocp>;
__overlay__ {
gpio_helper {
compatible = "gpio-of-helper";
status = "okay";
pinctrl-names = "default";
pinctrl-0 = <&gpio_pins>;
};
};
};
};
最佳答案
存储库中有两个用于 BBB 的 4.1 内核预编译版本:“TI”版本和“Bone”版本。 TI 版本使用更新的 API 来控制 PRU,Bone 版本具有与 3.8 内核相同的 API,并且 prussdrv_open() 函数应该可以正常工作。要安装 4.1“bone”内核,您可以执行以下操作:
cd /opt/scripts/tools
sudo ./update_kernel.sh --bone-rt-kernel --lts-4_1
更多信息:https://groups.google.com/forum/#!topic/beagleboard/cyM3f935wMA
关于linux - Beaglebone black - Debian 4.1 - PRU - prussdrv_open() 失败,返回 -1,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34311502/
beaglebone Black 处理器包括两个独立的可编程实时单元 (PRU)。业余爱好者和专业人士对这些单元可能用于实时应用程序感到兴奋,这是可以理解的。但是,如果您可以拥有 RTOS(无论是用于
我尝试根据“探索 BeagleBone”一书(Derek Moloy)使用 beagle bone black pru 我已经克隆了这本书的 github repristory,我尝试使用该覆盖层,但
我试图在我的 BeagleBone Black 上启用 PRU 模块,但我遇到了两个错误。第一个是当我尝试激活它时: echo BB-BONE-PRU-01 >/sys/devices/bone_ca
我花了整整 12 个小时试图让 beaglebone 上的 PRU 正常工作。到目前为止,我似乎完全停留在让设备覆盖工作以及启用 remoteproc 上。我试图拼凑我在互联网上找到的所有信息,但这些
我正在使用 AM335x 上的一个 PRU 单元来驱动 BeagleBone(GPIO1_2、GPIO1_3、GPIO1_6、GPIO1_7)上的 4 个 GPIO 引脚,并且我想同步边缘转换(我的完
我拼命想让我的 BBB 上的 PRU 正常工作。我所说的工作是指我想将引脚 P8 39-46 (GPIO2[6-13]) 用作由 PRU 控制的快速输出。 我在 SD 上安装了 BBB 的 debia
我正在以 root 身份运行示例 http://mythopoeic.org/BBB-PRU/pru-helloworld/example.c我收到错误: "prussdrv_open() faile
我在 BBB 上加载设备树覆盖时遇到问题。我正在运行 Debian Linux 8 (jessie),内核 4.4.17-bone13 操作系统没有安装 cape manager 所以我从这里得到它.
我是一名优秀的程序员,十分优秀!