Ian_Hurlock Posted September 7, 2003 Report Posted September 7, 2003 Ok so I have tried to change the values for the encoders. (2 days )That is change what they transmit in the way of midi when moved.Using enc example 2 I went in the Tables.inc and adjusted the value for the second encoder MT_ENTRY 0Xb0, 00x0a which I figured would give me some pan.Then did the assemble and convert thing but the transmitted value remained.The mpasm says there are 4 errors but completes 100% tasks so I figure that's ok ?A small hint here would really helpCheersIan Quote
TK. Posted September 7, 2003 Report Posted September 7, 2003 Hi Ian,which error messages do you mean exactly?Best Regards, Thorsten. Quote
Guest squirrelly_dude Posted September 7, 2003 Report Posted September 7, 2003 hi Ian,are these your error messages below?45 : Symbol not previously defined (USER_LCD_Init)46 : Symbol not previously defined (USER_LCD_Clear)47 : Symbol not previously defined(USER_LCD_CursorSet)48 : Symbol not previously defined (USER_LCD_PrintChar)If they are, you need to add this line before the "xx_vectors.inc" line in the "main.asm" file.#include "app_lcd.inc"your code should look something like this:; ==========================================================================;; ---[ MIOS header file ]---#include "mios.h";; ---[ useful macros ]---#include "macros.h"#include "app_lcd.inc";; ---[ vectors to MIOS functions (never change!) ]---#include "mios_vectors.inc";; ---[ user hooks (never change!) ]---#include "user_vectors.inc";; ==========================================================================;; General Application Settings;; ========================================================================== Quote
Ian_Hurlock Posted September 10, 2003 Author Report Posted September 10, 2003 Ok I did reply to these help outs but they seem to have dissapeared.Thanks they seem to assemble correctly now and i can change parameters for enc's etc.How, though, do I create note events ?Cheers Ian Quote
TK. Posted September 11, 2003 Report Posted September 11, 2003 Please read the comments in the main.asm header and open all files which are mentioned there to understand the purpose and the configuration possibilities.Best Regards, Thorsten. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.