exp() calculation for micro processors

You frequently encounter a situation that exponential function is necessary when you work on a musical instrument project using micro processors.  Its generic implementation is slow and space consuming, so is not suitable for micro processors.  So I need to do some alternative implementations.  For those implementations, space and speed is important but accuracy may be sacrificed in many cases. Follows are articles about fast and compact exp() implementations, for my future reference. http://www.convict.lu/Jeunes/ultimate_stuff/exp_ln_2.htm http://www.quinapalus.com/efunc.html I'm currently using a table lookup approach that I implemented before for an envelope generator I prototyped before.指 This one is still a little slow and large, but it's running in PSoC 4200 without major…

Memo: Maven

Installation How to install Maven on Windows Maven is a Java application, so we are just fine with expanding product zip package and setting environment variables M2_HOME and JAVA_HOME and set PATH. Creating a Maven Project Maven in 5 Minutes Maven in 5 seconds... dothis: mvn archetype:generate -DgroupId=com.mycompany.app -DartifactId=my-app -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false

Stub Synth Module for MOM Development

MOM (Master Of Modules) manages synthesizer modules to make them work as a single musical instrument.  The main responsibilities of MOM are Control patching. Control parameters. Organize voices. (possibly) Organize modules such as device ID management. Designing and implementing MOM and synth module data model is yet another challenge out of building CAN network.  Basically, the inter-module communication depends on CAN physical layer, but it's a pain to dragging such a dependency during the MOM development.  I'm sure the CAN network would be quite unstable at first and I don't want to stop and troubleshoot CAN while I'm working on MOM. So, in order to remove dependency on CAN network,…

MCP2515 CAN Controller

As I mentioned in the previous article, I'll use MCP2515 CAN controller for inter-module communication (initially, at least) for the Analog3 Project. Datasheet of this device is available at the product page. MCP2515 consists of CAN protocol engine, data buffers,  controller, and SPI interface as illustrated in the picture below. You need to attach a processor to make this device functional.  In early phase of the project, I'm thinking of using a Raspberry Pi as the Master Of Modules (mom) and Arduino's for dummy synthesizer modules.  Arduino is not a realistic solution for Analog3 both in terms of cost and performance.  So, I'm thinking of implementing a common synthesizer module…

Changing the Strategy for Analog3

I've been trying for a year to make my own serial interface protocol to exchange data among synth modules.  Though it showed some progress, I kind of giving up this approach.  The problem is complexity of serial interface controller.  A controller for multi-master serial interface is complex.  Implementing using a generic device is more costly in many sense than I expected.  I started with Arduino.  This was the easiest approach but channel was too slow.  I could only achieve 50kbps.  Then I tried implementing it into AVR using assembler language.  It went 100kbps but it was about the limit.  The most serious problem with MPU was that the processing is…

Raspberry Pi I2C clock-stretching problem

The I2C slave that I'm developing has been failing intermittently.  I finally noticed this was a known bug in Raspberry Pi that mishandles clock stretching. I2C slave may delay response by holding SCL low.  However, when the slave does it, the I2C master in Raspberry Pi gives very short clock for the first bit of the next byte.  The symptom can be seen as following picture. More detail explanation can be read in this link: http://www.advamation.com/knowhow/raspberrypi/rpi-i2c-bug.html In order to workaround this, I set data rate in I2C slave module higher.  The communication rate is 400 kbps, but I set the data rate 1000 kbps.  It worked for me.  Here is…

Raspberry Pi Setup Memo

Search engine helps, but I'm so lazy that I don't like to do the same search repeatedly. Wireless LAN setup: Use application "Wifi Configuration" from GUI menu. Common WIFI dongle problem of falling of network: Power management feature is enabled in default for device 8192cu.  Having following file resolves the issue: pi@raspberrypi ~ $ cat /etc/modprobe.d/8192cu.conf # prevent power down of wireless when idle options 8192cu rtw_power_mgnt=0 rtw_enusbss=0 See https://github.com/xbianonpi/xbian/issues/217 CAP/CTRL swap: See http://raspberrypi.stackexchange.com/questions/5333/how-to-map-caps-lock-key-to-something-useful Set static address to wifi interface: Edit /etc/network/interfaces.  If the setup for wlan looks like following, allow-hotplug wlan0 iface wlan0 inet manual wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf iface default inet dhcp modify as follows: allow-hotplug wlan0 iface wlan0 inet manual wpa-roam…