MIOS8 FAQ
You definitely want to use the PIC18F452, as it is available for the same price. Although MIOS offers mighty functions for much more complex applications, the handling will be much easier for you. Especially because of the MIOS Bootstrap Loader, which allows to reprogram the chip without a howto_program_a_pic
Smaller chips like the PIC16F84 are cheaper to obtain, but the price difference of $3 US doesn't really matter in a sparetime project. Also the instruction set of the smaller chips is very reduced, therefore programming such CPUs won't be a lot of fun!<BR>The use of cheaper chips only makes sense when the saved costs are higher than your wasted time!
Go away, this is a non-profit project!
You are allowed to share your applications with others, it's even allowed to publish them on the web or somewhere else, but please ask the copyright holder(s) of the program parts you are re-using in your application before doing this.
The copyright holders are listed in the headers of the source files, sometimes also in a README.txt or COPYRIGHT.txt file.
Fortunately this can be made with a common PIC programmer, see also howto_program_a_pic. Once the bootstrap loader has been written into the flash memory, OS and application updates can be made via MIDI. Therefore it isn't necessary anymore to build such a programmer by yourself for frequently firmware updates; you could ask a friend or somebody of the MIDIbox Forum if he does this job for you.
Also you can send your chip to SmashTV for free programming or you can buy them pre-programmed from the MIDIbox Store
No, the bootstrap loader is a *must*. It's also required that MIOS is already running before uploading an application. The upload procedure is described under http://www.ucapps.de/mios/mios_upload_procedure.gif
No, because the C device is only one-time-programmable - keep away from these OTP chips!
Yes. The LF type is the low-power version which works equally well in a MIDIbox.
The package type. (With integrated circuits, “package type” refers to form factor.) The PDIP package is absolutely recommended for DIY projects, and is the only type that will fit into the PIC socket on the Core), so use a PIC18F452-I/P or PIC18LF452-I/P.
During the startup phase, the bootstrap loader will send following SysEx message over MIDI Out “F0 00 00 7E 40 00 01 F7”. This identifies that your PIC is running. The whole test procedure is described under http://www.ucapps.de/howto_debug_midi.html
After the startup phase, you can send this message “F0 00 00 7E 40 00 0F F7” to the core, MIOS should reply with the same message immediately. You could also try to upload an application, after every code block a checksum message will be send which acknowledges that the stream has been received correctly.
See the MBHP_LTC page.
See howto_connect_a_lcd.
No!
But using an LCD will be a BIG help in getting your project working. Connect an LCD to your core module unless you have enough experience to know that you can do without it. It doesn't have to be part of your panel, or even stay connected when the project is working. Just have it there when you are bringing up the project. Your first goal in a new project should be to get a working core module with LCD. Jim Henry
See the MBHP_DIN page.
See the MBHP_DOUT page.
See the MBHP_AIN page. Note that MIOS supports also the direct (“unmuxed”) connection to the analog pins. So, if you only want to use 8 pots, you don't need to build the AIN multiplexer modules. The appr. configuration has to be made in the application main.asm file.
See the MBHP_MF page.
See the MBHP BankStick page.
See the MBHP_DIN page.
(Note that MIOS needs to know which shift registers the encoders have been connected to. This change has to be made in mios_tables.inc)
See the MBHP_DOUT page. The DOUT modules for the LED rings have to be connected to the same shift register output chain like the other LEDs (J8 of the core module, or cascaded to another DOUT module). Note that LED rings are handled by the user application, the setup has to be made in the main.asm file.
See the MBHP_SID page.
See the MBHP_AOUT and MBHP_AOUT_LC page.
With the AIN DIN DOUT test application for pots/buttons/LEDs, or MIDIO128 for testing buttons/LEDs only. Motorfaders can be tested with the MF Calibration program, the SID and the BankStick with the SID application. LCDs with every application.
You could build two core modules and link them together
Follow the instructions which are given in the “main.asm” file.
See also Book Reviews
But before buying a book about PIC assembly programming, consider that in many cases the use of MIOS C (→ http://www.ucapps.de/mios_c.html) is sufficient for common applications, and therefore assembly knowledge is not required.
The most important informations (for instance a complete instruction list) can be found at the Microchip site. Search under Products→PICmicro controllers→PIC18 Microcontroller Family→PIC18F452→Datasheet. There is also a reference manual for the whole PIC18 family available under Engineer's Toolbox→Reference Manuals→PIC18C MCU. Some interesting informations are also given by the Application notes (but you will find no informations about MIOS applications there . The PIClist is also a nice information source.
Currently only in the source codes and in the MIOS Functions Reference. Some additional docs are available in the MIOS Download Section