Calender Aplplication

Hi,

Does anyone run the calender application on bb board or devkit8000
board successfully?

I tried it on Devkit8000 board .i click it and it just flash and back
to the desktop.

So wt happen to cause this?

Does anyone have idea?

Thanks and Regards,
King.S

king wrote:

Hi,

Does anyone run the calender application on bb board or devkit8000
board successfully?

I tried it on Devkit8000 board .i click it and it just flash and back
to the desktop.

So wt happen to cause this?

Does anyone have idea?

no, with the info you gave, people will even ask themselves
WHAT calendar you are talking about at all....

I think he is talking about Android calendar app.

-D

Hi,

Deepakvr, you are right. i am talking abt the calender app built from
the source

Thanks and Regards,
King.S

king wrote:

Hi,

Deepakvr, you are right. i am talking abt the calender app built from
the source

still the purpose of this list is not to guess what somebody intended to ask.
With you giving us no information at all, how is anybody expected to help you?

I propose you look into android debugging methods like logcat, ADB, DDMS and then
come back with a more detailed error report. You might also want to look for help in
more android oriented channels.

Regards,

Vladimir

Hi,
Sorry, here i post the log after i click the calender app in my board

I/ActivityManager( 791): Starting activity: Intent
{ action=android.intent.action.MAIN categories=
{android.intent.category.LAUNCHER} flags=0x10200000 comp=
{com.android.calendar/com.android.calendar.LaunchActivity} }
D/dalvikvm( 913): GC freed 199 objects / 11792 bytes in 21ms
I/WindowManager( 791): Checking dispatch to: Window{437c89a0 Keyguard
paused=false}
I/WindowManager( 791): Not visible!
I/WindowManager( 791): Checking dispatch to: Window{437abeb0
StatusBar paused=false}
I/WindowManager( 791): Checking dispatch to: Window{438e90e0
StatusBarExpanded paused=false}
I/WindowManager( 791): Not visible!
I/WindowManager( 791): Checking dispatch to: Window{438dfd90
TrackingView paused=false}
I/WindowManager( 791): Not visible!
I/WindowManager( 791): Checking dispatch to: Window{438f56e8
com.android.launcher/com.android.launcher.Launcher paused=false}
I/WindowManager( 791): Checking dispatch to: Window{437c89a0 Keyguard
paused=false}
I/WindowManager( 791): Not visible!
I/WindowManager( 791): Checking dispatch to: Window{437abeb0
StatusBar paused=false}
I/WindowManager( 791): Checking dispatch to: Window{438e90e0
StatusBarExpanded paused=false}
I/WindowManager( 791): Not visible!
I/WindowManager( 791): Checking dispatch to: Window{438dfd90
TrackingView paused=false}
I/WindowManager( 791): Not visible!
I/WindowManager( 791): Checking dispatch to: Window{438f56e8
com.android.launcher/com.android.launcher.Launcher paused=false}
I/ActivityManager( 791): Starting activity: Intent
{ action=android.intent.action.MAIN categories=
{android.intent.category.LAUNCHER} flags=0x10200000 comp=
{com.android.calendar/com.android.calendar.LaunchActivity} }
D/dalvikvm( 913): GC freed 196 objects / 12880 bytes in 21ms

Thanks everyone!

Thanks and Regards,
King.S

I've been using the USB OTG port on the BeagleBoard to supply it with power. When I boot Ubuntu 9.04 (I haven't tried 9.10 yet) the host computer (running Mac OS X) detects a couple of new network devices - CDC Composite Gadgets. One of them appears to be a modem type device, but the second one is an Ethernet port.

If I then configure a static IP on the beagleboard, and a static IP on the same subnet on the Mac, they talk perfectly. I can even configure Internet Connection Sharing to set up a DHCP server and routing on the USB port, and the beagleboard has full internet access...

After I reboot the beagleboard, this device doesn't seem to be visible from the Mac side of things any more. Also, I'm going through a lot of Ethernet interfaces as every time I boot a new build, I see a new device, I'm up to en18 or so by now... This is because I'm assuming it's generating a random MAC address each time it boots.

So, my questions are - does anyone know how to configure this CDC Composite port such that it has a persistent MAC address, and how to ensure it remains active after a reboot?

Cheers,
Kai

You could add it your bootargs:

g_ether.host_addr=00:01:02:03:04:05 g_ether.dev_addr=06:07:08:09:0a:0b etc..

more here: http://www.linux-usb.org/gadget/

Regards

Thank you Robert,
That info seems to be exactly what I need.

Cheers,
Kai