I think I'm good here, all clear on my end.Alright, so this stalled out. What needs to be removed so I can make this a public post?
I think I'm good here, all clear on my end.Alright, so this stalled out. What needs to be removed so I can make this a public post?
Are there any further discussions on this topic in a private section of the forum? I'm interested in chipping in here as well now that I've got access to my own CIC.
Hey guys, I've been thinking about trying to work on some projects relating to the CIC. I've been lurking around the excellent threads here for a little while, and I keep getting taunted by the "Setting up development environment" private thread. Is there any way I could get access to that?
Thanks in advanced. I look forward to being able to contribute some of my own work to the community.
I took care of it. Just be sure to share your findings.
Great thanks to @emoRaivis for his code example on how to display static image, it helped me a lot in the beginning.
Try now, however I've just pushed most of it to the public area.
Try nowI found this thread through Google as well. I'm very interested in trying out my own Code on the QNX unit... Would it be possible to give me access to the thread "Setting up development environment"? If not, what's necessary to get access?
Thanks!
Hello,Attached is autorun script for usb (encrypted) which calls run.sh from USB (only the one in glove box works in F30, don't know about EXX).
Need to put both scripts in / of FAT32 formatted USB drive
copie_scr.sh has this inside
Code:cd /fs/usb0 ./run.sh
C code to encrypt/decrypt
Code:#include <stdio.h> unsigned int seed = 0x001be3ac; unsigned int prng_rand() { unsigned int r1, r3, r0; r0 = seed; r1 = (seed >> 1) | (seed << 31); r3 = ((r1 >> 16) & 0xFF) + r1; r1 = ((r3 >> 8) & 0xFF) << 16; r3 -= r1; seed = r3; return r0; } int main(int argc, char *argv[]) { int c; prng_rand(); c = getchar(); while (c != EOF) { c ^= (prng_rand() & 0xFF); putchar(c); c = getchar(); } }
cd /fs/usb0
./run.sh
#!/bin/ksh
USB0=$(mount -l | grep -i usb0)
mount -u /fs/usb0
mount -r /mnt/cic3
echo remounted for full access
cp -v -r /mnt/cic3/speech/tts/* /fs/usb0/