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 help
Cheers
Ian
T.K
September 7, 2003, 3:12pm
2
Hi Ian,
which error messages do you mean exactly?
Best Regards, Thorsten.
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
;; ==========================================================================
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
T.K
September 11, 2003, 2:34am
5
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.