Jump to content

Recommended Posts

Posted

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

Guest squirrelly_dude
Posted

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

;; ==========================================================================

Posted

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

Posted

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.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...