patent status 2017-12-23

已授权发明专利:
CN201410516641.2 一种带导向杆箱锥的型箱及该型箱的造型方法 杜争争;王洪涛;杨洪林;苏少静
CN201410593150.8 一种用于金属型铸造的超长多齿铸铁芯骨及其铸造方法 王洪涛
CN201410838856.6 一种发电机缸体铸造砂芯的冷铁芯骨组合装置及制作方法 王洪涛
CN201410512427.X 一种改善厚大断面灰铸铁石墨等级的方法 孙升;张守全;苏少静;周文军;王洪涛;杨万虎;陶涛;周杰
CN201510480725.X 砂芯吊运装置 于苏杭;王洪涛
CN201410838823.1 一种悬磨式矿石粉碎部件的造型工装及其制作方法 王洪涛
CN201510142943.2 一种斜立式陶瓷过滤网座及采用该过滤网座的浇注系统 王洪涛;宋亮
CN201410276161.3 一种灰铸铁铸件及球铁铸件铸造用的直冷冷铁 刘国峰;苏少静;徐国强;王洪涛;朱伟;陈洪涛;刘剑
审查中发明专利(审查生效日):
CN201610276316.2 铸造用内定位箱锥销套 王洪涛;侯斌 20160817
CN201610489690.0 过滤网支撑座、浇注系统及浇注方法 王洪涛 20161109
CN201710082851.9 设置孕育、球化同步定位机构的浇注装置 王洪涛 20170707
CN201510281833.4 用于铸造生产的定位箱锥及其铸造方法 杜争争;王洪涛 20170201
CN201610020390.8 组合式浇口盆 王洪涛;杜文强 20160622
CN201710383909.3 一种半永久式双浇口盆组合结构及其组合使用方法 王洪涛 20171201

failed to open vchiq instance raspbian volumio

If you get an error like “failed to open vchiq instance” you’ll need to do as root:

    echo 'SUBSYSTEM=="vchiq",GROUP="video",MODE="0660"' > /etc/udev/rules.d/10-vchiq-permissions.rules
    usermod -a -G video [your_username]
  • Or as one time temporary solution (until reboot):
    chmod a+rw /dev/vchiq

 
 

用树莓派Raspberry pi+piCorePlayer做HiFi DSD播放端

piCorePlayer是树莓派平台上,用tinycore结合squeezelite实现网路播放终端功能。它可以接USB音频解码器,也可以通过I2S接DAC板。这个与前面介绍的Volumio和Runeaudio不同(注×),它仅仅是播放终端,类似新出auralic aries,这个加个XMOS USB audio接口和WIFI就是简易版本的auralic aries,只不过没显示而已,使用成熟的罗技软件可能比现阶段的auralic aries还方便稳定。 Continue reading 用树莓派Raspberry pi+piCorePlayer做HiFi DSD播放端

Getting a Python script to run in the background (as a service) on boot

For some of my projects I write a simple service in Python and need it to start running in the background when the Raspberry Pi boots. Different Linux distributions use different ways of starting and stopping services (some now use Upstart, some systemd). I am using the “Wheezy” Debian distribution on my Raspberry Pi, and in this case the proper way to do this is using an “init script”. These are stored in the /etc/init.d folder. In there you can find scripts that for instance, start the networking system or a print server. Debian Wheezy uses the old Sys V init system which means that these scripts are run according to symbolic links in the /etc/rc.x directories. The Debian documentationexplains this. Continue reading Getting a Python script to run in the background (as a service) on boot