Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - vitaliy

Pages: 1 ... 3 4 5 6 7 [8] 9 10 11 12 13 14
106
GadgetPC / Re: Connect to GadgetPC via Hypertertminal
« on: December 15, 2010, 02:29:40 pm »
Install GadgetPC release for Windows on your PC.
You will find a driver under
C:\\bipom\\devtools\\GadgetPC\\win_drivers\\usb_serial

107
GadgetPC / Re: u-boot
« on: January 25, 2011, 01:08:02 pm »
yes, it is possible
Please read
http://www.bipom.com/documents/boards/gadgetpc/GadgetPC%20System%20Restore%20Guide.pdf

It explains all details

More useful info can be obtained from
http://www.bipom.com/web_documents/2899678.html

108
GadgetPC / Re: UVC Issues
« on: August 18, 2010, 02:01:21 am »

109
GadgetPC / Re: UVC Issues
« on: August 16, 2010, 12:54:43 am »
Quote
but when we boot into it the device hangs on "Starting kernel......."
Did you select a proper platform configuring Linux kernel ?
Did you change to UART0 as Linux console ?

110
GadgetPC / Re: Making a USB device driver
« on: July 30, 2010, 01:23:56 am »
Quote
it was probably only needed in one place
It is necessary to copy only to /lib/modules/2.6.30.4/

Did you execute \'depmod -a\' ?

In case of Debian a driver  has to be loaded automatically
as soon as the system detects the device in system.



111
GadgetPC / Re: Making a USB device driver
« on: July 28, 2010, 03:28:02 pm »
nice  :)

112
GadgetPC / Re: Making a USB device driver
« on: July 27, 2010, 01:45:06 am »
FTDI driver is a part of Linux kernel
GadgetPC realease provides ftdi_sio.ko module

113
GadgetPC / Re: Compiling modules and drivers (and c programs)
« on: May 31, 2010, 08:59:10 am »
Quote
then, when i try "apt-get install gcc" some packages get downloaded and then i get a "file not found" from apt-get, because the files it tries to fetch aren\'t in the repository, and i\'m not sure what to do next.

Try

chmod -R a+w /var/cache/man
mkdir -p /var/log/apt/
apt-get update
apt-get install build-essential

Quote
2) I\'m not clear whether the Ubuntu Virtual Machine that can be downloaded from the ftp (i downloaded UbuntuARM_Rev102_28Oct2009) already has the cross-compiler installed or is separate installation required? The "gcc" in that VM generates regular intel binaries according to the "file" command, and i don\'t know if there\'s a cross-compiler somewhere around already that i\'m missing

A cross-compiler is pre-installed
Of course, if you run gcc it will run a native x86 compiler
To complie for Gadget PC you need to run a cross-compiler for ARM.
Please look at /home/mini/app/hello . This is a test example with a correct make file.
To compile you need to execute the following commands
cd /home/mini/app/hello
make clean
make

Note, you can compile Linux executables for GadgetPC under Windows
using ARM development system from BiPOM. It\'s FREE




114
GadgetPC / Re: Compiling modules and drivers (and c programs)
« on: May 29, 2010, 03:14:55 am »
Quote
I am curious about getting mono installed on the GadgetPC.  How easy was it to cross compile the binaries?
Note, GadgetPC can run Debian installation.
I guess the fastest way is to try to install \'mono\' under Debian using standard methods

apt-get install monodevelop nunit mono-devel
apt-get install monodoc

Also, no needs to cross compile. It is possible to compile
on GadgetPC using a native gcc compiler.

I don\'t know if GPC resources will be enough to run \'mono\' virtual machine. It is only 32 MB system.




115
GadgetPC / Re: Compiling modules and drivers (and c programs)
« on: January 24, 2010, 12:57:12 pm »
For example, to compile a driver for Sierra USB modem
the following screenshot shows a typical scenario
http://www.bipom.com/support/gadgetpc/sierra.png

116
GadgetPC / Re: Compiling modules and drivers (and c programs)
« on: January 15, 2010, 02:23:56 am »
Quote
Also, to the GadgetPC developers, can you outline your driver compilation process for the ARM 9?

Usually, we compile driver sources on a PC wmware ubuntu platform using a cross-compiler



117
GadgetPC / Re: Install Debian from a Debian box?
« on: June 05, 2010, 01:25:03 am »
It seemed the hardware worked. But the wireless interface is not configured. ESSID is empty (ieee 802.11bg  essid:"")

Here are the typical commands you need to add to /etc/network/interfaces. Your network has to support  WPA
encryption

# The wireless network interface
auto wlan1
iface wlan1 inet static
address 192.168.1.212
netmask 255.255.255.0
gateway 192.168.1.1
wpa-psk "your password"
wpa-driver wext
wpa-key-mgmt WPA-PSK
wpa-proto WPA2
wpa-ssid "your ESSID"

As the 1st step try to execute the commands by hands.
If everything works you can add to /etc/network/interfaces

118
GadgetPC / Re: Install Debian from a Debian box?
« on: June 04, 2010, 02:39:17 pm »
show logs of ifconfig, iwconfig

119
GadgetPC / Re: Install Debian from a Debian box?
« on: May 31, 2010, 02:10:10 am »
Did you configure GadgetPC loaders to run Debian ?
Please read
http://www.bipom.com/documents/boards/gadgetpc/Commands%20to%20set%20up%20UBOOT%20environment%20to%20boot%20GadgetPC.pdf

Quote
1) To run Debian on GadgetPC, type the following at the U-BOOT prompt:
setenv bootcmd \'usb start; fatload usb 0:1 0x21000000 uImage; bootm 0x21000000\'
setenv bootargs \'mem=32M console=ttyS1,115200 root=/dev/sda2 rw rootwait\'
saveenv
( You do not need any mmfs.gz or gpcfs.gz at all )
2) To run ARM9 Linux on GadgetPC, type the following at the U-BOOT prompt:
setenv bootcmd \'usb start; fatload usb 0:1 0x21000000 uimage; fatload usb 0:1 0x20410000 gpcfs.gz; bootm 0x21000000\'
setenv bootargs \'mem=32M console=ttyS1,115200 root=/dev/ram0 rw initrd=0x20410000,0x800000 ramdisk_size=8200\'
saveenv

120
GadgetPC / Re: Install Debian from a Debian box?
« on: May 30, 2010, 03:16:58 pm »
115200

Pages: 1 ... 3 4 5 6 7 [8] 9 10 11 12 13 14