Here you should find solutions to common problems you may encounter while running experiments with our VLSI hardware.
First of all, try to figure out why! You can then start it typing (I suggest in a new shell):
python -c 'import pyAMDA; pyAMDA.Server.run()'
We don’t why and when it happens. Try restarting AmdaServer and carefully power cycle the hardware. In normal case it will fix. If it doesn’t, you may want to check pin #46 which should be at Vdd, in particular it’s short-circuited to pin #48, which is at Vdd. Pin #46 tells the firmware to use the bias generator.
There is an unknown bug regarding this. Everytime you power up the AMDA board you have to push the reset button for the scanner to work. NOTE 2010.02.08: still doesn’t work on AMDA 205 + CPG.
First of all, try to figure out why! You can then start it using the script you find on svn (I suggest on a new shell). You can stop it typing ‘stop’ on that shell.
Did you close all the clients? Did you check if someone else is using a client on the same machine? Did you check your processes in background? If you did so, just wait a bit before starting the server, it takes a while for the kernel to free the port. Useful Unix commands:
The way NeuroTools computes mean rates doesn’t work well. Always specify t_start and t_stop when computing rates, as in:
rate = train.mean_rate(t_start = 0, t_stop = 1000)
In order to acquire and send data to the spectrum board you should be a part of SPCM group on the computer. Ask someone with admin rights to add your user id to the group.
This is an issue related to NeuroTools restricting the neuron ids to int where as we have floats as well. You need to delete the ‘int’ parameter from the below function’s return command.
This function can be found in NeuroTools/src/signals/spikes.py
def id_list(self):
"""
Return the list of all the cells ids contained in the
SpikeList object
Examples
>> spklist.id_list()
[0,1,2,3,....,9999]
"""
return numpy.array(self.spiketrains.keys())
This is very bad. Most probably it’s a short-circuit somewhere which is badly powering the device(s) and most probably the problem is in the chip...
Try restarting the AEX board.
The chip has DACs and bias generators. A DAC converts your digital number on a voltage and applies it to the correspondent transistor. Transistors change characteristic with temperature and other factors so the resulting current for the voltage you apply can be much different from time to time. That’s where a bias generator come to play: it fixes the current directly, compensating changes in temperature etc. In the CPG chip you have both DACs and bias generators for some of the biases. DACs are identified with a ‘TC’ suffix (which actually stands for Test Cell), all the others are from bias generators. With a bias generator you sweep linearly on current. With DAC you sweep exponentially on current.
When you set a bias which has both DAC and bias generator (ex. VrestTC and Vrest) you must disable DAC if you want to use the bias generator or set to 0 the bias generator if you want to use the DAC.
** When using DACs, always check the corresponding bias generator currents **
You can maybe increase the slope of the raising edges. Connect two probes on two pins of the parallel output of the AMDA board (remove the gray caps if you need). Play with AEPD bias and explore...
When using the analogue voltage pins to measure things with pyOsc, you might run into the following troubles
Learning:
Mapper (zanzara/lambdalix or the miniATX zenigata) boot now from a USB stick in which Ubuntu and all needed software (i.e. pyNCS etc.) and all drivers (i.e. AEX and AMDA) are installed. Please check /root/software. It would be nice to create a live cd of this customized distribution, so that if we change machine, lose the hard-disk, or anything else, we are able to restore the mapper in just one click.
To test the mapper create a multichip setup connected to the mapper. You can use also only one AEX board but it has to be specifically programmed for a multichip setup (see “Multi-chip experiments: a general introduction”). Remember to change the xml/mc.xml file adequately! In /software/testmapper/test.py you find a class for running a test experiment together with the script for starting AEX server, Server.py. Now, run the server and then follow the steps (or please write a script which will do that for you, and for me too...). These steps have been tested with a single AEX board (channel i6o2), amda number 204, ifslwta chip.
[TODO: convert the following to a properly formatted version]
During the stimulation you should see: - chip is spiking - chip receives events on parallel input
WARNING this is not a conclusive test! WARNING remember to activate the mapper before loading any mapping or doing any experiment. You do this pressing a button on the PCI board (is hard to find on ver. 2 mapper).
Of course, it’s broken! Something happened in Capocaccia CNE 2010. Symptoms are: - when mapper is active, some buffer gets full after some seconds of normal activity from the chips. This blocks the entire serial chain. - as soon as you de-activate the mapper (pressing the button on the board) the chain is free again... Events are correctly mapped. We realized that the cause is a burned FPGA. If you mount the PCI board the other way around you burn the FPGA. Don’t do it.
Restart AEX boards and AexServer in the proper way. Most of times, it works, but if it doesn’t remember that there can be events stuck in some place along the serial bus.
Well, most probably somebody just turned off or on the light... No, the setup is not shielded. Just trash these events. Since they are (most probably) not inside the address space of the multichip setup, your data will not be corrupted. By the way, the strange events could trigger a mapper freeze. A power cycle should fix.