2

Closed

POSTPONED: request that display configuration settings be added to MFDeploy

description

file attachments

Closed Sep 11, 2012 at 9:23 PM by lorenzte

comments

AndreMarschalek wrote Jul 8, 2012 at 11:53 AM

attached picture made during device booting

stevepresley wrote Aug 5, 2012 at 2:33 AM

Although I don't agree with the approach to get this changed in the referenced thread, I would like a deployment (preferably) or firmware flash option to turn of debug information.

Any chance this could be a compiler directive that you could set? for instance, we could tell our program in debug mode, set debug display on; in release mode to turn it off.

Not sure if the firmware could read a setting file in the application section of the the flash storage to determine this.

lorenzte wrote Aug 6, 2012 at 5:15 PM

we will consider this for 4.3

gus_ghielec wrote Aug 19, 2012 at 1:30 PM

This config has been used by GHI Electronics' customers and it works very well. It is what .NET Gadgeteer use as well


static void SetLcdConfig()
{
LCDController.Configurations lcdConfig = 
    new LCDController.Configurations();

lcdConfig.Width = 800;
lcdConfig.Height = 480;

lcdConfig.OutputEnableIsFixed = true;
lcdConfig.OutputEnablePolarity = true;

lcdConfig.HorizontalSyncPolarity = true;
lcdConfig.VerticalSyncPolarity = true;
lcdConfig.PixelPolarity = false;

lcdConfig.HorizontalSyncPulseWidth = 1;
lcdConfig.HorizontalBackPorch = 46;
lcdConfig.HorizontalFrontPorch = 16;
lcdConfig.VerticalSyncPulseWidth = 1;
lcdConfig.VerticalBackPorch = 23;
lcdConfig.VerticalFrontPorch = 7;

lcdConfig.PixelClockRateKHz = 25000;

if (LCDController.Set(lcdConfig))// for the user to know if new config has been saved and reset is required.
    Microsoft.SPOT.Hardware.PowerState.RebootDevice(false);
}

Gus - GHI Electronics

gus_ghielec wrote Aug 19, 2012 at 1:38 PM

I like to add to my previous reply. The implementation is already found in fez hydra. So, it should be copy/paste to move this to the core. https://ghiopensource.codeplex.com/

wrote Sep 11, 2012 at 6:02 PM

POSTPONED:
we will not fix this for 4.3