參數(shù)資料
型號: PPSMMANUAL
英文描述: PPSMMANUAL
中文描述: PPSMMANUAL
文件頁數(shù): 35/187頁
文件大?。?/td> 1616K
代理商: PPSMMANUAL
第1頁第2頁第3頁第4頁第5頁第6頁第7頁第8頁第9頁第10頁第11頁第12頁第13頁第14頁第15頁第16頁第17頁第18頁第19頁第20頁第21頁第22頁第23頁第24頁第25頁第26頁第27頁第28頁第29頁第30頁第31頁第32頁第33頁第34頁當(dāng)前第35頁第36頁第37頁第38頁第39頁第40頁第41頁第42頁第43頁第44頁第45頁第46頁第47頁第48頁第49頁第50頁第51頁第52頁第53頁第54頁第55頁第56頁第57頁第58頁第59頁第60頁第61頁第62頁第63頁第64頁第65頁第66頁第67頁第68頁第69頁第70頁第71頁第72頁第73頁第74頁第75頁第76頁第77頁第78頁第79頁第80頁第81頁第82頁第83頁第84頁第85頁第86頁第87頁第88頁第89頁第90頁第91頁第92頁第93頁第94頁第95頁第96頁第97頁第98頁第99頁第100頁第101頁第102頁第103頁第104頁第105頁第106頁第107頁第108頁第109頁第110頁第111頁第112頁第113頁第114頁第115頁第116頁第117頁第118頁第119頁第120頁第121頁第122頁第123頁第124頁第125頁第126頁第127頁第128頁第129頁第130頁第131頁第132頁第133頁第134頁第135頁第136頁第137頁第138頁第139頁第140頁第141頁第142頁第143頁第144頁第145頁第146頁第147頁第148頁第149頁第150頁第151頁第152頁第153頁第154頁第155頁第156頁第157頁第158頁第159頁第160頁第161頁第162頁第163頁第164頁第165頁第166頁第167頁第168頁第169頁第170頁第171頁第172頁第173頁第174頁第175頁第176頁第177頁第178頁第179頁第180頁第181頁第182頁第183頁第184頁第185頁第186頁第187頁
6-16
Using Using Graphics Tools
Programmer’s Manual
equals to FALSE to copy all properties of the common panning
screen to the task’s own context
Example 6-5 Use ChangePanning() to let all tasks share the same
panning screen
#include <ppsm.h>
#include <errors.h>
#include <proto.h>
PAN_SCREEN newScreen;
STATUS TestApp()
{
/* use the common panning screen in this task */
ChangePanning(&newScreen, FALSE, 0);
/* draw a circle with center at (100, 100) and radius 80 pixels */
DrawCircle(BLACK, 100, 100, 80, REPLACE_STYLE);
}
main()
{
U32 taskId;
P_U8 newPanning;
PPSMInit(FALSE);
/* create a common panning screen with size 640x400 */
newPanning = (P_U8)GetScreenMem(640, 400);
newScreen.panAddress = (U32)newPanning;
newScreen.displayScreenAddr = (U32)newPanning;
newScreen.horzSize = 640;
newScreen.vertSize = 400;
newScreen.displayXOrigin = 0;
newScreen.displayYOrigin = 0;
newScreen.regPOSR = 0;
newScreen.regPSW = 80;/* as the LCD panel used is 2 bits per pixel,
PSW = 640/8 = 80. */
/* destroy the system panning screen and use the new panning screen created above
*/
ChangePanning(&newScreen, FALSE, 0);
/* clear whole panning screen */
ClearScreen(WHITE);
/* draw a circle with center at (100, 100) and radius 20 pixels to the new panning
screen */
DrawCircle(BLACK, 100, 100, 20, REPLACE_STYLE);
/* create a new task with no panning screen */
AdvTaskCreate(&taskId, (P_VOID)TestApp, 0, 0, 0, 0, 3048, PPSM_NOSCREEN, 0, 0, 0);
TaskStart(taskId);
}
In the example above, both the system task in main() and task TestApp() share
the same panning screen. So whatever done on the panning screen by the
system task or task TestApp() will have effect on the panning screen.
If a panning screen is shared among tasks. Calls ChangePanning() to free the
screen in one of the task can also free/corrupt the others’ screen memory area.
Personal Portable System Manager
Programmer’s Manual
6-13
The pattern fill mode 0 will turn off the pattern fill feature.
6.12
Set Dot Width
STATUS
SetDotWidth
)
After this routine is called, the new dot width will take effect in all subsequent
DrawDot(), DrawHorz(), DrawVert(), DrawRec(), DrawLIne(), DrawCircle(),
DrawEllipse(), DrawArc(), and DrawVector().
If the dot width is larger than 1, a thick dot, thick line, thick circle, thick ellipse,
thick arc and thick vector lines can be drawn.
Example 6-3 Set dot width
160 * Drawing1 - Draw a LINE and then an ELLIPSE with pattern filled on Screen1.
161 * Both have a dot width = 6, but no border on the ellipse is
162 * drawn as the bordermode in SetPatternFill is set to 0.
.
.
.
170 SetDotWidth(6, 0);
171 SetPatternFill(2, WHITE, 0, 3);
6.13
DisplayMove
STATUS
DisplayMove
)
This function is to set the relative coordinate of top left corner of LCD in panning
screen. It sets the display region on LCD from panning screen. Whenever this
function is called, the new area in panning screen will be refreshed on LCD.
6.14
Direct All Graphics Output to off-screen memory
STATUS
ChangeWindow
P_U16 oldWidth
,
)
Run-time computation intensive image generation and display could be slow.
Users may see the graphics output appears slowly on the LCD display screen.
routines to an off-screen memory area temporarily, so that no changes will appear
on the LCD display screen while the image is being built. Once the image is
generated, it can be displayed onto the panning screen. This will give the effect
that the image is displayed instantaneously.
ChangeWindow() assumes that all input parameters are valid. No zero or invalid
values are supposed to be passed as input to this routine.
Example 6-4 Use ChangeWindow() to draw image
U32 oldScreen1, oldScreen2;
U16 oldWidth1, oldHeight1;
F
Freescale Semiconductor, Inc.
For More Information On This Product,
Go to: www.freescale.com
n
.
相關(guān)PDF資料
PDF描述
PPT005-1G-WW-2V-FE DRUCKWANDLER
PPT020-1A-WF-2V-FE DRUCKWANDLER
PPT100-1A-WN-2V-FE DRUCKWANDLER
PPT100-1G-WN-2V-FE DRUCKWANDLER
PPT500-1G-WN-2V-FE DRUCKWANDLER
相關(guān)代理商/技術(shù)參數(shù)
參數(shù)描述
PPSN815 制造商:Pyle 功能描述:10 ft Eight Channel RCA Phono Snake Cable
PPST2 制造商:Amphenol Audio 功能描述:
PP-ST-50MM 制造商:Black Box Corporation 功能描述:PRE-POLISHED ST CON 50 MIC MM BLACK 12PAK
PP-ST-SM 制造商:Black Box Corporation 功能描述:PRE-POLISHED ST CON SM BLUE 12PAK
PPST-SP 制造商:Duratool 功能描述:Self Tapping Screw Kit-Panhead (Size 6-10)