1 |
588 |
jeremybenn |
/** ###################################################################
|
2 |
|
|
** THIS BEAN MODULE IS GENERATED BY THE TOOL. DO NOT MODIFY IT.
|
3 |
|
|
** Filename : Byte1.H
|
4 |
|
|
** Project : RTOSDemo
|
5 |
|
|
** Processor : MC9S12DP256BCPV
|
6 |
|
|
** Beantype : ByteIO
|
7 |
|
|
** Version : Bean 02.019, Driver 01.03, CPU db: 2.87.283
|
8 |
|
|
** Compiler : Metrowerks HC12 C Compiler
|
9 |
|
|
** Date/Time : 16/06/2005, 21:10
|
10 |
|
|
** Abstract :
|
11 |
|
|
** This bean "ByteIO" implements an one-byte input/output.
|
12 |
|
|
** It uses one 8-bit port.
|
13 |
|
|
** Note: This bean is set to work in Output direction only.
|
14 |
|
|
** Methods of this bean are mostly implemented as a macros
|
15 |
|
|
** (if supported by target langauage and compiler).
|
16 |
|
|
** Settings :
|
17 |
|
|
** Port name : B
|
18 |
|
|
**
|
19 |
|
|
** Initial direction : Output (direction cannot be changed)
|
20 |
|
|
** Initial output value : 255 = 0FFH
|
21 |
|
|
** Initial pull option : off
|
22 |
|
|
**
|
23 |
|
|
** 8-bit data register : PORTB [1]
|
24 |
|
|
** 8-bit control register : DDRB [3]
|
25 |
|
|
**
|
26 |
|
|
** ----------------------------------------------------
|
27 |
|
|
** Bit | Pin | Name
|
28 |
|
|
** ----------------------------------------------------
|
29 |
|
|
** 0 | 24 | PB0_ADDR0_DATA0
|
30 |
|
|
** 1 | 25 | PB1_ADDR1_DATA1
|
31 |
|
|
** 2 | 26 | PB2_ADDR2_DATA2
|
32 |
|
|
** 3 | 27 | PB3_ADDR3_DATA3
|
33 |
|
|
** 4 | 28 | PB4_ADDR4_DATA4
|
34 |
|
|
** 5 | 29 | PB5_ADDR5_DATA5
|
35 |
|
|
** 6 | 30 | PB6_ADDR6_DATA6
|
36 |
|
|
** 7 | 31 | PB7_ADDR7_DATA7
|
37 |
|
|
** ----------------------------------------------------
|
38 |
|
|
** Contents :
|
39 |
|
|
** PutBit - void Byte1_PutBit(byte Bit,bool Val);
|
40 |
|
|
** NegBit - void Byte1_NegBit(byte Bit);
|
41 |
|
|
**
|
42 |
|
|
** (c) Copyright UNIS, spol. s r.o. 1997-2002
|
43 |
|
|
** UNIS, spol. s r.o.
|
44 |
|
|
** Jundrovska 33
|
45 |
|
|
** 624 00 Brno
|
46 |
|
|
** Czech Republic
|
47 |
|
|
** http : www.processorexpert.com
|
48 |
|
|
** mail : info@processorexpert.com
|
49 |
|
|
** ###################################################################*/
|
50 |
|
|
|
51 |
|
|
#ifndef __Byte1_H
|
52 |
|
|
#define __Byte1_H
|
53 |
|
|
|
54 |
|
|
/* MODULE Byte1. */
|
55 |
|
|
|
56 |
|
|
/*Including shared modules, which are used in the whole project*/
|
57 |
|
|
#include "PE_Types.h"
|
58 |
|
|
#include "PE_Error.h"
|
59 |
|
|
#include "PE_Const.h"
|
60 |
|
|
#include "IO_Map.h"
|
61 |
|
|
#include "PE_Timer.h"
|
62 |
|
|
|
63 |
|
|
#include "Cpu.h"
|
64 |
|
|
|
65 |
|
|
#pragma CODE_SEG Byte1_CODE /* Code section for this module. */
|
66 |
|
|
|
67 |
|
|
/*
|
68 |
|
|
** ===================================================================
|
69 |
|
|
** Method : Byte1_PutBit (bean ByteIO)
|
70 |
|
|
**
|
71 |
|
|
** Description :
|
72 |
|
|
** This method writes the new value to the specified bit
|
73 |
|
|
** of the output value.
|
74 |
|
|
** Parameters :
|
75 |
|
|
** NAME - DESCRIPTION
|
76 |
|
|
** BitNum - Number of the bit (0 to 7)
|
77 |
|
|
** Val - New value of the bit (FALSE or TRUE)
|
78 |
|
|
** FALSE = "0" or "Low", TRUE = "1" or "High"
|
79 |
|
|
** Returns : Nothing
|
80 |
|
|
** ===================================================================
|
81 |
|
|
*/
|
82 |
|
|
void Byte1_PutBit(byte BitNum, byte Value);
|
83 |
|
|
|
84 |
|
|
/*
|
85 |
|
|
** ===================================================================
|
86 |
|
|
** Method : Byte1_NegBit (bean ByteIO)
|
87 |
|
|
**
|
88 |
|
|
** Description :
|
89 |
|
|
** This method negates (invertes) the specified bit of the
|
90 |
|
|
** output value.
|
91 |
|
|
** Parameters :
|
92 |
|
|
** NAME - DESCRIPTION
|
93 |
|
|
** BitNum - Number of the bit to invert (0 to 7)
|
94 |
|
|
** Returns : Nothing
|
95 |
|
|
** ===================================================================
|
96 |
|
|
*/
|
97 |
|
|
void Byte1_NegBit(byte BitNum);
|
98 |
|
|
|
99 |
|
|
#pragma CODE_SEG DEFAULT /* Change code section to DEFAULT. */
|
100 |
|
|
|
101 |
|
|
/* END Byte1. */
|
102 |
|
|
|
103 |
|
|
#endif /* __Byte1_H*/
|
104 |
|
|
/*
|
105 |
|
|
** ###################################################################
|
106 |
|
|
**
|
107 |
|
|
** This file was created by UNIS Processor Expert 03.33 for
|
108 |
|
|
** the Motorola HCS12 series of microcontrollers.
|
109 |
|
|
**
|
110 |
|
|
** ###################################################################
|
111 |
|
|
*/
|