**** BEGIN LOGGING AT Thu Feb 14 02:59:57 2019 Feb 14 03:00:13 dreamhiker: you do win+R then type DISKMGMT.MSC Feb 14 03:00:18 you can change the driver letter here Feb 14 03:00:35 right click on the volume, delete the old drive letter, add a new one Feb 14 03:03:28 hey _set Feb 14 03:03:34 sorry set_ Feb 14 03:04:58 testing if the board is strong enough for our kiosk Feb 14 03:05:23 Oh. Feb 14 03:05:30 That is nice. Feb 14 03:05:41 I really hope it will work out! Feb 14 03:05:45 When you typed strong, what do you mean? Feb 14 03:05:48 You guys did amazing work Feb 14 03:05:52 Not me. Feb 14 03:05:58 we got the nodejs app Feb 14 03:06:14 I did not build that or any of their boards. Feb 14 03:06:25 ;) Feb 14 03:06:37 I just like Q & A and chatting about the BBB. Feb 14 03:06:40 ;) Feb 14 03:06:46 thanks ;) Feb 14 03:06:58 need to build custom kernel now Feb 14 03:07:00 heheheheh Feb 14 03:07:08 Okay. Andre: Okay. Have fun. Feb 14 03:07:49 do you think sata driver is a kernel module or is it compiled into kernel? Feb 14 03:08:14 this is what I am trying to figure out now Feb 14 03:08:19 Oh. Feb 14 03:08:33 In google, type "linux sata driver." Feb 14 03:08:34 (I am quite tired at the moment honestly) Feb 14 03:08:39 Oh. Feb 14 03:09:01 OK Feb 14 03:09:13 maybe you know answer to this question Feb 14 03:09:22 yea. Just try that. It may surprise you. Feb 14 03:09:29 is there a build for bbbx15 Feb 14 03:09:42 Oh. No. I have no idea about the sata stuff. Feb 14 03:09:43 Yes. Feb 14 03:09:47 the small one without graphic interface? Feb 14 03:09:57 its not just debian Feb 14 03:10:16 bbb x15 has its own image. Feb 14 03:10:24 I need to get to the point of make menu for the current kernel and I will know ;) Feb 14 03:11:38 https://www.digikey.com/eewiki/display/linuxonarm/BeagleBoard-X15 Feb 14 03:12:03 That should walk you through the steps on how to manage your own image. Feb 14 03:13:09 Andre: Did you see that page yet? Feb 14 03:13:28 Oh yes! Feb 14 03:13:40 Is that okay for what you need to do? Feb 14 03:13:51 Thank you! Feb 14 03:14:25 Yep. And this eewiki has a forum, too. If you search for it, you will find it. Feb 14 03:14:59 Thanks! Feb 14 03:15:03 That place has a bunch of knowledgeable staff that support people at times. Feb 14 03:15:14 I was looking for minimal version for bbbx15 Feb 14 03:15:21 and you just helped me find it! Feb 14 03:15:34 Oh...yea. You can set that up easily I bet. Feb 14 03:16:03 I once talked to someone on that page for over 150 replies. I kept making mistake after mistake. Oops. Feb 14 03:16:04 I will have room to compile it on the board! Feb 14 03:16:18 Yep... Feb 14 03:17:36 Andre: Good luck and Godspeed. I will look around for other info. when we chat again next. Have fun! Feb 14 03:17:53 Kiosk? Like in the mall? Feb 14 03:18:11 sort of ;) Feb 14 03:18:16 or are you holding a booth at some science fair? Feb 14 03:18:24 I wish! Feb 14 03:18:27 honestly ;) Feb 14 03:18:33 Okay. Feb 14 03:18:38 Thanks for help again! Feb 14 03:18:41 Appreciate it! Feb 14 03:18:46 Yep. Feb 14 03:18:49 Later for now. Feb 14 03:18:56 Have a good night! Feb 14 04:33:00 What is the voltage limit for the x15 before it gets damaged Feb 14 14:37:56 m Feb 14 15:29:18 I have no premissions to pru, what can i do? Feb 14 15:29:31 beaglebone black Feb 14 15:30:47 Guest71492: what do you mean exactly? Feb 14 15:31:11 and are you using uio-pruss or remoteproc-pru? Feb 14 15:31:37 yes Feb 14 15:32:04 ehm, "yes" is not a useful answer to either of those questions Feb 14 15:32:05 set status Feb 14 15:32:35 => /sys/class/remoteproc/remoteproc1 set the status or start and stop Feb 14 15:32:53 i have always premission denied Feb 14 15:33:17 oh, I don't know how the permissions are setup in case of remoteproc-pru, I only use uio-pruss Feb 14 15:33:29 my guess would be no permissions have been set up at all, hence root privileges are required Feb 14 15:33:43 you can use sudo Feb 14 15:33:47 i did it as root Feb 14 15:34:22 then either you did something wrong, or you're confused about how the remoteproc interface works Feb 14 15:35:07 can you give an example of a command you've tried that failed? Feb 14 15:35:59 echo 'start' > /sys/class/remoteproc/remoteproc1/state Feb 14 15:37:00 what does ls -l /sys/class/remoteproc/remoteproc1/state show? Feb 14 15:37:16 offline Feb 14 15:37:21 note that putting "sudo" in front of that would not have the result you desire Feb 14 15:37:26 no, I asked ls -l, not cat Feb 14 15:38:16 sudo echo start >file would redirect the output of "sudo echo start" to the file, but the file would still be opened with normal privileges, not with root privileges Feb 14 15:38:52 easiest workaround for that is to just open a root shell using "sudo -i" and type the command there Feb 14 15:40:28 a better solution would be to change its permissions using: sudo chown debian /sys/class/remoteproc/remoteproc1/state Feb 14 15:40:38 then you'll be able to write to it as normal user Feb 14 15:41:18 ls: cannot access 'status': No such file or directory Feb 14 15:41:38 it's called state, not status Feb 14 15:41:54 sorry Feb 14 15:41:58 -rw-r--r-- 1 root root 4096 Feb 14 15:41 state Feb 14 15:42:50 anyway, it sounds like your main confusion is because you tried to do "sudo echo start >/sys/class/remoteproc/remoteproc1/state", which doesn't work for the reason I just explained Feb 14 15:44:06 after changing the premissions i get -bash: echo: write error: No such file or directory Feb 14 15:44:15 my suggestion would be to use "sudo chown debian /sys/class/remoteproc/remoteproc1/state" to allow the debian user to access it (you only need to do this once after boot) and then simply "echo start >/sys/class/remoteproc/remoteproc1/state" should work Feb 14 15:44:31 that's probably just an error from the remoteproc framework Feb 14 15:44:34 check kernel log Feb 14 15:44:40 I don't know much about remoteproc, I don't use it Feb 14 15:46:22 all what i did, is enable the pruss in the device tree "disabled" to "okay" Feb 14 15:46:35 ehm, what do you mean? Feb 14 15:46:41 remoteproc-pru is enabled by default Feb 14 15:47:21 which debian image are you using? Feb 14 15:47:32 realy i get only one remoteproc0 with the default image Feb 14 15:47:49 then something is wrong. are you booting from eMMC or SD card? Feb 14 15:48:00 sd card Feb 14 15:48:18 assuming you don't care about the contents of eMMC, wipe it using "sudo blkdiscard /dev/mmcblk1" Feb 14 15:48:30 an old bootloader on eMMC can cause functionality to break when booting from sd card Feb 14 15:49:41 in /boot/uEnv.txt there's a setting "uboot_overlay_pru" that's used to select whether to enable remoteproc-pru or uio-pruss. by default it is set to remoteproc-pru Feb 14 15:49:49 an old bootloader may however not understand that setting Feb 14 15:50:00 wiping eMMC forces the system to use the bootloader on SD card instead Feb 14 15:51:13 okay Feb 14 15:51:31 whatever you did to somehow enable pruss anyway, you should probably undo it Feb 14 15:54:10 if you only care about getting pru to work, and don't need remoteproc-pru specifically, you may also be interested in my python library for working with pru (loading programs, inspecting/modifying pru state, mapping shared memory, receiving interrupts, etc): https://github.com/mvduin/py-uio Feb 14 16:01:15 unfortunately i need this remoteproc-pru, because i try to control several bus systems Feb 14 17:37:52 JOIN Feb 14 17:38:12 is there a gitter channel for beagleboard? Feb 15 00:43:22 zmatt: the baud rate you recommended with the bbb is 460800 right ? Feb 15 00:43:38 I see even higher baudrates in but I guess my cables are too lame for it Feb 15 01:33:45 Is the BBB ready for 'prime time' - seems there are some design issues even with Rev C which might preclude it being used in an application where power cycling or hitting reset is not an option? Feb 15 01:42:16 Is the BBB ready for 'prime time' - seems there are some design issues even with Rev C which might preclude it being used in an application where power cycling or hitting reset is not an option? Feb 15 01:49:41 its been around for a good number of years now .. the cpu is an industrial control processor .. what are your specific requirements? Feb 15 01:57:40 It is a controller for a remote piece of equipment. There is a known issue on Rev C where the etherenet PHY is not reset properly after power cycle. Feb 15 02:00:52 Unit was chosen because it has been around for some years yet even at Rev C there is this issue. See here: https://github.com/beagleboard/beaglebone-black/issues/4 Feb 15 02:02:25 But what has me really worried are the problems this company has found (scroll to the last but one reply from here: https://wp.josh.com/2018/06/04/a-software-only-solution-to-the-vexing-beagle-bone-black-phy-issue/ Feb 15 02:03:58 I have a new design (PCBs arrived today) that needs to run 24hrs per day without human intervention. If others have succesfully done this then I'll feel a bit happier - the problems referenced might just be outliers. But if most applications have not been commercial I'm going to have to rethink teh whole project (in 2 weeks!) Feb 15 02:13:23 yeah there's nothing preventing commercial use of the BBB .. but it's probably a case of YMMV :/ Feb 15 02:13:40 I don't think there are any guarantees expressed or implied Feb 15 02:14:00 jkridner[m]: ^ any thoughts? Feb 15 02:15:36 Seems that is the case i.e. not quite ready for Prime Time! Feb 15 02:15:44 rcn-ee[m]: ^ I see you commented also :D Feb 15 02:16:19 sounds liek there's a patch in the wild .. Feb 15 02:16:22 The fix to the Ethernet is an easy one, but needs a board change to route a GPIO line to the PHY. The kernel also supports this reset. Feb 15 02:16:31 right, so I'm reading :) Feb 15 02:16:56 my BBB (fwiw) has an uptime of .. Feb 15 02:17:22 [ 1:36am] root@beagleblack ~ # uptime Feb 15 02:17:22 02:17:09 up 186 days, 19:06, 2 users, load average: 0.36, 0.14, 0.11 Feb 15 02:17:22 [ 2:17am] root@beagleblack ~ # uname -a Feb 15 02:17:23 Linux beagleblack 3.13.6-bone7.2 #1 SMP Fri Mar 21 03:59:54 GMT 2014 armv7l GNU/Linux Feb 15 02:17:32 and thats the 2G version. Feb 15 02:17:37 But the issues reported by that German company are particularly worrying. Feb 15 02:17:39 its my local DHCP server. Feb 15 02:17:46 Sure, once it is running - all seems OK. Feb 15 02:17:56 But power cycling is a different story. Feb 15 02:17:58 never experienced a fault myself. Feb 15 02:18:21 but for anythign remote, without telemetry .. sure, you'd be wise to be careful Feb 15 02:18:37 Seems that the PHY does not always get reset properly (the reset circuit on the BB is a crude RC circuit). Feb 15 02:19:54 that's unfortunate .. a reset chip like the .. err .. DSwhatever is easy/cheap enough Feb 15 02:20:31 I can't remember right now which one it was .. either a 3 or 5 SOT23 most likely Feb 15 02:21:10 Yes - that is my thinking. I think the software fix which power cycles the BB if the PHY is not detected after boot will be OK for this application - but imagine an application where someone is expecting to interact soon after power on. They might wait 20s max - but if it then needs to reboot and it's another 20s just because the PHY didn't come up then there's going to be a service call! Feb 15 02:21:37 aye... Feb 15 02:21:47 re the rest chip - yes, very cheap. I'm hoping that adding one to teh 'cape' might help. Feb 15 02:21:49 reset Feb 15 02:22:28 Thanks for the chat. Feb 15 02:22:47 np, good luck with the project. Feb 15 02:23:07 as long as the reset chip pulls the line hard enough, I'da thought it'd be Better at least :D Feb 15 02:24:21 Cannot hurt ;-) Feb 15 02:25:35 BTW - RT9818C-29GV. Keeps reset low until supply reaches 2.9V and then holds low for a few hundred ms. Feb 15 02:26:19 ds1810 could have been .. but that's looking expensive lol Feb 15 02:26:24 $0.10 from Digikey Feb 15 02:29:18 lgtm **** ENDING LOGGING AT Fri Feb 15 02:59:56 2019