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.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...