Sunvox DLL for Arm7? (C.H.I.P, Raspberry Pi, etc)

Multi-platform modular music creation studio
Post Reply
peboer
Posts: 5
Joined: Thu Mar 24, 2016 1:00 am

Sunvox DLL for Arm7? (C.H.I.P, Raspberry Pi, etc)

Post by peboer »

I'm working with the C.H.I.P. computer from Next Thing Co. SunVox runs pretty well on it using the Arm7. I'm curious about using the DLL so I can use sunvox synths as sources for a PureData sequencer I've been working with, but there doesn't seem to a DLL build for that platform. Is there any hope for that in the future?

Thanks.

Peter
User avatar
NightRadio
Site Admin
Posts: 3955
Joined: Fri Jan 23, 2004 12:28 am
Location: Ekaterinburg. Russia
Contact:

Re: Sunvox DLL for Arm7? (C.H.I.P, Raspberry Pi, etc)

Post by NightRadio »

I will try to make it in the next SunVox update!
peboer
Posts: 5
Joined: Thu Mar 24, 2016 1:00 am

Re: Sunvox DLL for Arm7? (C.H.I.P, Raspberry Pi, etc)

Post by peboer »

Great!
Since we're on the subject, I've been working with Sunvox on the PocketCHIP (out soon!). We have an issue that Sunvox in fullscreen mode grabs all the key commands, even from our window manager. The result is that once sunvox is open, we can't Alt-tab to any other windows or apps. We've been looking at changes to our window manager, but I'm wondering if you might be interested in talking to our developers to see what exactly we should be looking at. PM me if this might work out.
peboer
Posts: 5
Joined: Thu Mar 24, 2016 1:00 am

Re: Sunvox DLL for Arm7? (C.H.I.P, Raspberry Pi, etc)

Post by peboer »

Turns out that taking it out of fullscreen alleviates this situation. When in doubt, read the .ini :)
User avatar
NightRadio
Site Admin
Posts: 3955
Joined: Fri Jan 23, 2004 12:28 am
Location: Ekaterinburg. Russia
Contact:

Re: Sunvox DLL for Arm7? (C.H.I.P, Raspberry Pi, etc)

Post by NightRadio »

In this version i use SDL 1.2 and just initialize it by the following command:

Code: Select all

SDL_SetVideoMode( xsize, ysize, COLORBITS, SDL_HWSURFACE | SDL_FULLSCREEN );
and in case of window-mode:

Code: Select all

SDL_SetVideoMode( xsize, ysize, COLORBITS, SDL_HWSURFACE );
No other differences :)
Post Reply