- Get link
- X
- Other Apps
- Get link
- X
- Other Apps
Introduction
Hello everyone, I've recently laid my hands on this interesting piece of hardware and this post will contain everything I'll manage to learn about this board while I'm playing with it. This is an attempt to get together all those scattered pieces of information I found on the Internet.
Quite predictably, I managed to brick Vocore while messing around with its operating system (the only working thing left in memory was the bootloader), so I'll describe how to easily get it up and running again.
Requirements
- PC running Linux (I used Arch Linux),
- LED, any value resistor, any button or switch.
- Any USB to Serial board: ft232 based or noticeably cheaper ch340 based. Only for unbricking!
Some helpful links you'll frequently use
One page you're going to look at a lot is this one.. All the essential information such as board layout, pin-out etc. is there.Vocore's operating system is OpenWrt, so you'll definitely pay a visit to their site once you've decided to rewrite the out-of-the-box OpenWrt build - for example, to get SPI working.
Let's start!
First off, I advice you get some miniature pin headers when you order Vocore:1.27mm pin headers on the left, 2.56mm headers to the right are for scale. |
Their pitch is 1.27mm and you should get female as well as male pin headers.
At first I was happy to just solder wires to Vocore's plated holes, but then I realized I needed more flexibility and a bunch of wires was the wrong way to achieve it, BUT the solder was already on most of the holes so I ended up soldering the pin header sideways:
Sideways pin header is still better than wires sticking out of every corner. |
So, you've finally got the package and you have this board in front of you. You probably already connected 5v to it, switched on your power supply and login'd via ssh. If you didn't, do it now.
What's next? First, to be able to configure the kernel of Vocore and, more importantly, to get a cross-compilation toolchain, we will have to compile OpenWrt, which is the OS that runs Vocore.
Building OpenWrt
1) Download OpenWrt1 | git clone git: //git .openwrt.org /15 .05 /openwrt .git |
1 2 | cd openwrt . /scripts/feeds update -a |
1 2 3 | . /scripts/feeds install -a or . /scripts/feeds install <whatever_you_want> |
1 2 3 4 | wget http: //noblepepper .com /vocorewiki/lib/exe/fetch .php?media=wiki:patch.txt -O patch.txt patch -p1 < patch.txt wget http: //vonger .cn /upload/vocore .patch -O vocore.patch patch -p1 < vocore.patch |
Optional: you can change whatever you want - e.g. change the SSID to something you like more, change the root password, add security to Wifi etc..
4) Configure the kernel.
1 | make menuconfig |
1 2 3 | Target System (Ralink RT288x/RT3xxx) Subtarget (RT3x5x/RT5350 based boards) Target Profile (VoCore) - |
1 | Global build settings ---> |
1 2 | [*] Select all kernel module packages by default [*] Select all userspace packages by default |
I would definitely include dmesg which is a handy program that displays system log so you know exactly why doesn't something work. To make use of software SPI you will need to check
1 | Kernel modules ---> SPI Support ---> kmod-spi-gpio-custom |
1 | Utilities ---> spidev_test |
1 | target/linux/ramips/dts/VOCORE.dts |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | gpio12 { /* UARTF_DCD_N */ gpio-export,name = "gpio12"; gpio-export,direction_may_change = <1>; gpios = <&gpio0 12 0>; }; gpio13 { /* UARTF_DSR_N */ gpio-export,name = "gpio13"; gpio-export,direction_may_change = <1>; gpios = <&gpio0 13 0>; }; gpio14 { /* UARTF_RIN */ gpio-export,name = "gpio14"; gpio-export,direction_may_change = <1>; gpios = <&gpio0 14 0>; }; gpio19 { /* JTAG_TMS */ gpio-export,name = "gpio19"; gpio-export,direction_may_change = <1>; gpios = <&gpio0 19 0>; }; gpio21 { /* JTAG_TRST_N */ gpio-export,name = "gpio21"; gpio-export,direction_may_change = <1>; gpios = <&gpio0 21 0>; }; |
5) Run make and wait patiently...
1 | make -j3 IGNORE_ERRORS=m V=99 |
6) Flash the new firmware
We are going to use the easiest method. I even made a script update_openwrt_on_vocore.sh to assist that (requires packages zenity and sshpass):
1 2 3 4 5 6 7 | #!/bin/bash sshpass -p 'vocore' scp . /bin/ramips/openwrt-ramips-rt305x-vocore-squashfs-sysupgrade .bin root@192.168.61.1: /tmp/ zenity --info --text= "sysupgrade -c /tmp/openwrt-ramips-rt305x-vocore-squashfs-sysupgrade.bin" & sshpass -p 'vocore' ssh -t root@192.168.61.1 exit |
1 | . /update_openwrt_on_vocore .sh |
That's it! Wait for the AP to reappear and you can telnet to your brand new custom OpenWrt.
Adding some hardware
My aim was to make Vocore work with REYAX CC110LM boards (containing TI's CC110L):However, as an old microcontroller enthusiast I decided to add a blinky light and a button to see if I can make Linux blink an LED and read the state of a button. So I got to soldering this all on, I hope you can make your soldering look less messy:
Schematic:
led - gpio7
button - gpio19
cc110l:
SI - gpio12
SO - gpio13
SCLK - gpio14
CSN - gpio21
GDO - gpio0
As you can see, I also hotglued miniUSB jack as a power connector. Quite handy.
First program - Blink
To switch GPIO 7 (with LED connected to it) on and off from shell you can telnet into Vocore and type the following:1 2 3 4 5 | echo 7 > /sys/class/gpio/export echo "out" > /sys/class/gpio/gpio07/direction echo 1 > /sys/class/gpio/gpio07/value ... echo 0 > /sys/class/gpio/gpio07/value |
Controlling GPIO from command line is nice, but that's not how it should work, so let's compile and launch our first program that blinks an LED. I'm using makefiles to automate compiling and uploading.
Program structure is simple, and so is makefile. To compile and upload to target you only have to change this line:
1 | CC = /home/vadim/Smart_home/Vocore/openwrt/staging_dir/toolchain-mipsel_24kec +dsp_gcc-4.8-linaro_uClibc-0.9.33.2 /bin/mipsel-openwrt-linux-uclibc-gcc |
Make system will compile your program, copy it to vocore's /root and login you to telnet.
You only have to launch it ./blink and look at the LED.
Next up - buttons
Now that we've dealt with GPIOs in output mode, we have input mode ahead of us - that's what the button is for.To assess the button's state (gpio19) from command line enter the following:
1 2 3 | echo 19 > /sys/class/gpio/export echo "in" > /sys/class/gpio/gpio19/direction cat /sys/class/gpio/gpio19/value |
SPI
I'll be using software SPI via spi-gpio-custom kernel module. Adding an SPI device is as simple as launching1 | insmod spi-gpio-custom bus0=1,14,12,13,0,1000000,21 |
14 is pin for SCK
12 is pin for MOSI
13 is pin for MISO
0 is SPI mode,
1000000 is max clock freq. (in Hz, so 1Mhz in this case)
21 is pin for SS
and using the resulting /dev/spidev1.0 like this:
1 | echo hello > /dev/spidev1 .0 |
1 | spidev_test -D /dev/spi1 .0 -s 1000000 |
If what you see is a page of '0's, 'F's or some rubbish that is inconsistent between spidev_test launches, check if your wiring (and insmod command) is correct and try again.
So you spoiled it
UPDATE 2018.06.13: updated the script (got rid of zenity dependency), made some improvements in workflow description.In fact, I bricked Vocore so many times I made a script that automatically restores the default firmware. You can get it HERE or at my github repo with shell scripts.
1) Let's begin by connecting USB-Serial adapter to Vocore's UART at pins 15 and 16.
Using an Arduino Uno as a serial adapter. |
A close up of my piss-poor job at connecting RX and TX wires to Vocore. But hey, at least it's removable! |
That's me reflashing another Vocore, as you can see this one looks decent with pin headers and all. |
2) Install putty. Add it to $PATH if you package manager hadn't done that yet.
3) Don't power up Vocore yet.
4) Launch
1 | . /unbrick_vocore .sh /dev/youruartdevice baudrate |
5) Follow the on-screen instructions:
The process itself will take about 5 minutes, you can watch the progress bar in the console window:
![]() |
Firmware mid-upload. |
6) You can key in reset in putty window when the script is finished uploading:
By the way, if you'd like to use this script to upload different firmware to your Vocore, you can totally do it. Just recalculate the firmware size - it's in hexadecimal - and plug the new figure into ckermit.sh file like so:
The end.
I'll write about using CC110L with Vocore if I'll have enough time.Comments
Thanks Vadim for sharing, have a question.
ReplyDeleteIs it possible to set wifi tx power to 0dBm on VoCore.
Thanks in advance
Mat
Hi, MathewK, unfortunately I don't have Vocore anymore, but I can blindly suggest something like
Deleteiwconfig wlan0 txpower 0
Let me know if it works ;-)