Jump to content

pilo

Frequent Writer
  • Posts

    1,093
  • Joined

  • Last visited

  • Days Won

    4

Posts posted by pilo

  1. faudrai regarder en international, j'ai 2 poussoir à pieds, récupéré depuis longtemps, telement que je sais aps d'ou ils sortent, mais je sais pas ou les trouver en france... (j'ai regardé déja un peu sans succès).

    jette un coup d'oeil chez reichelt.de peut etre.

  2. it's seems like some digital stuff??

    (I can be wrong)...

    but the small pcb with the xtal seems to be a Lr clock generator? the big smd chip is a dsp? (alesis? al1301) and the small is an alesis DAC? (al1201?) and the last chip is an output buffer?(lm324?)

    am I dreaming? ;)

  3. ...make the quest for cheap touch sensitive motorfaders a little easier.

    Don't forget that the cheap motor fader quests is long and hard ;)

    took me one year to found affordable one.

    I think the best way to know which MF is used in commercial stuff, is to look in those.

  4. ben le quel est le mieux... là ca ne dépends que de toi ;) et de ce que tu veux en faire!

    ah oui, regarde sur ebay.com pour les écrans lcd, il y a souvent de très bon prix (tu devrait pouvoir trouver un 4x20 plus deux 2x20 pour le prix d'un seul 2x20 en france!).

  5. Salut et bienvenu ;)

    alors pour les lcds, les 4x20 lignes sont géré (en fait je croit que c'est comme 2 2x20).

    Ensuite effectivement, si tu utilise une application midibox qui ne gère que les 2 ou 4x16, tu perdra 4 caractères par ligne, mais tu peux aussi ajuster l'application à tes besoins, et utiliser cette place perdu.

    ;)

  6. lol

    je suis la!

    oui il y a une matrice maintenant, mais c'est encore expérimental.

    cf la page mios_download, il y a 2 exemples utilisant la matrice, avec le schéma suivant :

    http://www.ucapps.de/mbhp/mbhp_scan_matrix1.pdf

    bon, faut bidouiller un peu pour incorporer ca dans l'application LC, mais D2k l'a fait, et ca marche :) (je pense qu'il donnera son code sans problème).

    Et je suis arrivé a le faire marcher avec le wrapper C aussi (en fait c pas telement plus compliqué).

  7. lol alors Gilles tu as eu ton PIC?

    parceke je l'ai pas encore envoyé (bcp de taf cette semaine), mais il est la sous mes yeux programmer :) je doit l'envoyer? (ca mettra pas plus de 24h de toute facon).

  8. hehe ;)

    I'm currently soldering the din and dout for the matrix stuff, then test it with C wrapper (I will include the matrix stuff in mios_wrapper.asm). Then I can start to ake more stuff :)

    As soon as I have a working setup(switch and encoder), I will make basics C tutorials (or maybe somebody else start this?), to show how it's easy now to make MIOS apps ;) I need to clean up and even rewrite the make file, the rules are wrong (I use rules for project.hex but the makefile convert it to syx, and I don't put rules for mios_wrapper.o).

  9. I cannot explain while your variant should work better

    I can't too... :-[

    Actually the problem was that pin and pin_value was inverted in C wrapper... so I try to put that in the right way. And I couldn't wait to test some C code ;) That's why I made this changed, without really knowing why it works (I try to put the right value in mios_parameter1 instead of W).

    By the way making apps with C and MIOS is real fun... ;D

  10. I think there's a problem with MIOS_MF_FaderMove function,

    .MIOS_MF_FaderMove code
    _MIOS_MF_FaderMove
          global      _MIOS_MF_FaderMove
    
          movwf      MIOS_PARAMETER1
          movff      FSR0L, FSR2L
           movff      PREINC2, MIOS_PARAMETER2
           movff      PREINC2, MIOS_PARAMETER1
          goto      MIOS_MF_FaderMove
    I put this instead of this :
    .MIOS_MF_FaderMove code
    _MIOS_MF_FaderMove
          global      _MIOS_MF_FaderMove
    
          movwf      MIOS_PARAMETER1
          movff      FSR0L, FSR2L
           movff      PREINC2, MIOS_PARAMETER2
           movf      PREINC2, W
          goto      MIOS_MF_FaderMove

    And now it seems to work well.

×
×
  • Create New...