C51 Primer
C51 Primer
C51 Primer
An Introduction To The Use Of The Keil C51 Compiler On The 8051 Family
Edition 3.6 05 October 2003 by
Mike Beach
Editor for Edition 3.6
Chris Hills
Chris Hills
Digitally signed by Chris Hills DN: CN = Chris Hills, C = GB, O = Phaedrus systems, OU = Phaedrus Systems Reason: I am the author of this document Location: Tamworth UK Date: 2003.10.05 19:23:35 +01'00'
Hitex (UK) Ltd. Tel +44 24 7669 2066 Fax: +44 24 7669 2131 www.hitex.co.uk
Copyright Hitex (UK) Ltd. 1996, 2002 & Phaedrus Systems 2002,2003 All Rights Reserved. No Part of this publication may be transmitted, transcribed, stored in a retrieval system, translated into any language, in any form, by any means without the written permission of Hitex (UK) Ltd.
www.hitex.co.uk
page 2 of 190
Version 3.5
Contents
0 1 2 3 About The C51 Primer ...................................................................................................... 7 0.1 History............................................................................................................................ 8 Introduction .................................................................................................................... 11 Compiler Chain .............................................................................................................. 13 C51 Basics - The 8051 Architecture ................................................................................. 15 3.1 8051 Memory Configurations........................................................................................ 15 3.1.1 Physical Location Of The Memory Spaces............................................................... 15 3.2 Hardware Memory Models ........................................................................................... 19 3.2.1 External DATA....................................................................................................... 19 3.2.2 External Code ........................................................................................................ 20 3.2.3 Write to CODE Space ............................................................................................ 20 3.3 Possible Memory Models ............................................................................................. 21 3.3.1 ROM Memory Models............................................................................................. 21 3.3.2 RAM Memory Models ............................................................................................. 22 3.3.3 Choosing The Best Memory Configuration/Model.................................................. 23 3.3.4 What data goes where? .......................................................................................... 25 3.4 Setting The Memory Model........................................................................................... 26 3.5 Local Memory Model Specification............................................................................... 27 3.5.1 Overview ............................................................................................................... 27 Declaring Variables And Constants ................................................................................ 29 4.1 Constants...................................................................................................................... 29 4.2 Variables...................................................................................................................... 30 4.2.1 Uninitialised Variables ........................................................................................... 30 4.2.2 Initialised Variables ............................................................................................... 31 4.3 Watchdogs With Large Amounts Of Initialised Data...................................................... 32 4.4 C51 Variables............................................................................................................... 33 4.4.1 Variable Types....................................................................................................... 33 4.4.2 Special Function Bits............................................................................................... 35 4.4.3 Converting Between Types .................................................................................... 36 4.4.4 A Non-ISO Approach To Checking Data Type Overflow ......................................... 37 Program Structure And Layout........................................................................................ 39 5.1 Modular Programming In C51 ...................................................................................... 39 5.2 Accessibility Of Variables In Modular Programs .......................................................... 42 5.3 Building a C51 Modular Program................................................................................. 45 5.3.1 The Problem........................................................................................................... 45 5.3.2 Maintainable Inter-Module Links............................................................................ 45 5.4 Standard Templates (and Version Control)................................................................... 51 5.4.1 Version Control...................................................................................................... 51 5.5 Task Scheduling ........................................................................................................... 52 5.5.1 Applications Overview ........................................................................................... 52 5.5.2 Simple 8051 multi-task Systems.............................................................................. 53 5.5.3 Simple Scheduling - A Partial Solution .................................................................... 55 C Language Extensions For 8051 Programming.............................................................. 57 6.1 Accessing 8051 On-Chip Peripherals ........................................................................... 57 6.2 Interrupts...................................................................................................................... 58 6.2.1 The Interrupt Function Type ................................................................................... 58 6.2.2 Using C51 With Target Monitor Debuggers............................................................ 58 6.2.3 Coping Interrupt Spacings Other Than 8 ................................................................ 59 Pointers In C51 ............................................................................................................... 61 7.1 Using Pointers And Arrays In C51................................................................................. 61
www.hitex.co.uk
page 3 of 190
Version 3.5
7.1.1 Pointers In Assembler ............................................................................................ 61 7.1.2 Pointers In C51 ....................................................................................................... 61 7.2 Pointers To Absolute Addresses ................................................................................... 63 7.3 Arrays And Pointers - Two Sides Of The Same Coin? .................................................... 64 7.3.1 Uninitialised Arrays................................................................................................ 64 7.3.2 Initialised Arrays .................................................................................................... 64 7.3.3 Using Arrays .......................................................................................................... 65 7.3.4 Summary Of Arrays And Pointers ........................................................................... 66 7.4 Structures ..................................................................................................................... 67 7.4.1 Why Use Structures?............................................................................................... 67 7.4.2 Arrays Of Structures ............................................................................................... 68 7.4.3 Initialised Structures............................................................................................... 69 7.4.4 Placing Structures At Absolute Addresses .............................................................. 69 7.4.5 Pointers To Structures............................................................................................. 70 7.4.6 Passing Structure Pointers To Functions ................................................................. 70 7.4.7 Structure Pointers To Absolute Addresses.............................................................. 71 7.5 Unions .......................................................................................................................... 71 7.6 Generic Pointers........................................................................................................... 72 7.7 Spaced Pointers In C51................................................................................................. 74 8 Accessing External Memory Mapped Peripherals .......................................................... 77 8.1 The XBYTE And XWORD Macros .................................................................................. 77 8.2 Initialised XDATA Pointers............................................................................................ 78 8.3 Run Time xdata Pointers ............................................................................................... 80 8.4 The volatile Storage Class ......................................................................................... 81 8.5 Placing Variables At Specific Locations - The Linker Method........................................ 81 8.6 Excluding External Data Ranges From Specific Areas................................................... 83 8.7 -missing ORDER and AT now in C51 ............................................................................. 83 8.8 Using The _at_and _ORDER_ Controls .......................................................................... 84 9 Linking Issues And Stack Placement ............................................................................... 85 9.1 Basic Use Of L51 Linker ................................................................................................ 85 9.2 Stack Placement ........................................................................................................... 86 9.3 Using The Top 128 Bytes of the 8052 RAM..................................................................... 86 9.4 L51 Linker Data RAM Overlaying.................................................................................. 87 9.4.1 Overlaying Principles ............................................................................................ 87 9.4.2 Impact Of Overlaying On Program Construction .................................................... 88 9.4.3 Indirect Function Calls With Function Pointers (hazardous).................................... 88 9.4.4 Indirectly called functions solution ......................................................................... 91 9.4.5 Function Jump Table Warning (Non-hazardous) ......................................................... 92 9.4.6 Function Jump Table Warning Solution................................................................... 93 9.4.7 Multiple Call To Segment Warning (Hazardous) ....................................................... 94 9.4.8 Multiple Call To Segment Solution.......................................................................... 95 9.4.9 Overlaying Public Variables .................................................................................. 96 10 Other C51 Extensions.................................................................................................. 99 10.1 Special Function Bits ................................................................................................... 99 10.2 Support For 80C517/537 32-bit Maths Unit................................................................ 100 10.2.1 The MDU - How To Use It .................................................................................... 100 10.2.2 The 8 Datapointers ............................................................................................. 100 10.2.3 80C517 - Things To Be Aware Of......................................................................... 100 10.3 87C751 Support ........................................................................................................ 101 10.3.1 87C751 - Steps To Take ...................................................................................... 101 10.3.2 Integer Promotion .............................................................................................. 101 11 Miscellaneous Points ................................................................................................. 103 11.1 Tying The C Program To The Restart Vector ............................................................. 103 11.2 Intrinsic Functions..................................................................................................... 103 11.3 EA Bit Control #pragma............................................................................................ 104
www.hitex.co.uk
page 4 of 190
Version 3.5
11.4 16-Bit sfr Support ...................................................................................................... 104 11.5 Function Level Optimisation ..................................................................................... 105 11.6 In-Line Functions In C51 ........................................................................................... 105 12 Some C51 Programming Tricks ................................................................................. 107 12.1 Accessing R0 etc. directly from C51 ......................................................................... 107 12.2 Making Use Of Unused Interrupt Sources ................................................................. 107 12.3 Code Memory Device Switching............................................................................... 108 12.4 Simulating A Software Reset...................................................................................... 109 12.5 The Compiler Preprocessor - #define ...................................................................... 110 13 C51 Library Functions ............................................................................................... 111 13.1 Library Function Calling ........................................................................................... 111 13.2 Memory-Model Specific Libraries............................................................................. 111 14 Outputs From C51 ..................................................................................................... 113 14.1 Object Files .............................................................................................................. 113 14.2 HEX Files For EPROM Blowing .................................................................................. 113 14.3 Assembler Output..................................................................................................... 113 15 Assembler Interfacing To C Programs....................................................................... 115 15.1 Assembler Function Example ................................................................................... 115 15.2 Parameter Passing To Assembler Functions.............................................................. 117 15.3 Parameter Passing In Registers................................................................................. 117 16 General Things To Be Aware Of ................................................................................ 119 16.1 .................................................................................................................................. 119 16.2 .................................................................................................................................. 119 16.3 .................................................................................................................................. 119 16.4 .................................................................................................................................. 119 16.5 .................................................................................................................................. 119 16.6 .................................................................................................................................. 120 16.7 Floating Point Numbers ............................................................................................ 120 17 Conclusion ................................................................................................................ 121 18 Appendix A ............................................................................................................... 125 19 Appendix B ............................................................................................................... 127 20 Appendix C............................................................................................................... 139 20.1 Dhrystone ................................................................................................................. 139 20.2 Whetstone ................................................................................................................ 139 20.3 The Sieve of Eratosthenes ......................................................................................... 140 21 Appendix D............................................................................................................... 152 22 Appendix E Tile Hill Embedded C Style Guide ......................................................... 157 23 Apendix F A Standard History of C ............................................................................ 160 23.1 From K&R to ISO-C99 :- A Standard History of C ....................................................... 161 23.1.1 K&R (1st Edition) 1978 ......................................................................................... 161 23.1.2 K&R (2nd edition 1988) ........................................................................................ 162 23.1.3 ANSI C (1989) ..................................................................................................... 162 23.1.4 ISO-C90 (1990) .................................................................................................. 162 23.1.5 ISO-C99 ISO/IEC 9899:1999 ............................................................................ 163 23.1.6 ISO/IEC 9899:1999 TC1 2001 .............................................................................. 164 23.2 The Future: Back to C. (Why C is not C++) ............................................................... 164 23.3 What to read for Embedded C? ................................................................................ 165 24 Appendix G Timers & Delays .................................................................................... 169 25 Appendix H Serial Ports and Baud rates .................................................................... 171 26 Appendix J ICE Connect your design ........................................................................ 173 27 Appendix K 8051 Instruction set (in Hex order) ......................................................... 175 28 Appendix L Refferences ............................................................................................ 181 29 Standards .................................................................................................................. 187
www.hitex.co.uk
page 5 of 190
Version 3.5
www.hitex.co.uk
page 6 of 190
www.hitex.co.uk
page 7 of 190
touted as "portable" the vast majority of embedded applications will never be ported (other than to another, usually more powerful, part in the same family) Set-up each and every on-chip peripheral on all of the 400 plus different 8051 variants! Some are, however, covered in the appendices. This guide should be read in association with a good C reference and is not meant to be a definitive work on the C language. It covers all the Keil 8051-specific language extensions and those areas where the CPU architecture has an impact on coding approach.
0.1 History
The C51 Primer was first concived and written by Mike Beach in 1989 as a guide to both the 8051 and the Keil compiler. Since it's initial publication it has been given away with all Keil C51 compiler sold by Hitex, put on the Hitex BBS and later on the web site www.Hitex.co.uk, www.hitex.de, www.keil.co.uk and numerous others it has become one of the standard texts on the 8051. Issue I Issue II Issue III Issue 3.5 Issue 3.6 1991 not issued 1994 M Beach M Beach M Beach Based on Keil C51 V3.02 Revised for Keil C51 V6 Major re-write Revised for Keil C51 V7 (and academic year)
January 2002 Chris Hills (Issued I Draft form only) October 2003 Chris Hills
One of the main changes since Issue III is the change in C syntax between C51 V4 and C51 V5. The declaration for variables before Version 5 was: code unsigned char name; xdata int name; this was changed for version 5 to unsigned char code name; int xdata name; bl (banked linker) is now standard floating point maths improved The other major visable change is the uVision IDE. The uVuision 1 series IDE was a 16 bit system that ran under Win 3.1 (and 9*, NT) This was available with Version 5 compilers. The current IDE , uVision2, is a wholly 32-bit system that will work with C51 V6 onwards Despite the IDE all the tools remain command line driven. This permits their use, as in the past, with most forms of make, other IDE's and script files.
www.hitex.co.uk
page 8 of 190
Disclaimer and contact details This book has been written by several humans and therefore may have errors and omissions. Should you find any errors and omissions please email the current editor, Chris Hills at chills@hitex.co.uk or chris@phaedsys.org The first person to report a particular error will receive the highly prized Hitex ASCII Table mug (subject to availability) this excludes Hitex and Keil employees and distributors.
Eur Ing Chris Hills BSc (hons) C. Eng, MIEE, FRGS Technical Specialist Team 8051 Hitex (UK)
chills@hitex.co.uk +44 (0)24 7669 2066 or The author's personal email chris@phaedsys.org http://www.phaedsys.org http://Quest.phaedsys.org October 2003 The Quest series at http://QuEST.phaedsys.org contains this paper and papers on Embedded C in genreral, Embnedded Debuggers, testing strratergy etc.
www.hitex.co.uk
page 9 of 190
www.hitex.co.uk
page 10 of 190
1 Introduction
C can be a rather terse and mystifying language. Widely quoted as being a high level language, C does contain many such features that are in used in HLL structured programming, defined procedure calling, parameter passing, powerful control structures etc. However much of the power (and danger) of C lies in its ability to allow direct access to the actual bits, bytes and words of the hardware. To a great extent, C is a high-level assembly language. Most programmers who are familiar with C will have been used to writing programs within large machines running Unix, Linux, other RTOS or MS-Windows. Even in the now cramped 640KB of MSDOS, considerable space was available so that the smallest variable in a program will usually be an int (16 bits). Most interfacing to the real world will be done via system interrupts and operating system function calls. Thus, the actual C written is concerned only with the manipulation and processing of variables, strings, arrays etc. it rarely has to manipulate hardware. In the modern 8-bit microcontroller, however, the situation is somewhat different. Taking the 8051 as an example, the total program size might only occupy 4 or 8K bytes and use only 128 bytes of RAM. Real devices such as ports, special function registers and directly accessing the hardware must be addressed by the application, usually in C. Interrupts have to be written and serviced, which require vectors at absolute addresses. Special care must be taken with a routines data memory allocation if over-writing of data is to be avoided. One of the fundamentals of C is that parameters are passed to a function and results returned to the caller via the stack. This means a function can be called from both interrupts and the background process without fear of its local data being overwritten. The ability to call a function from several, possibly overlapping, places is called reentrancy. A serious restriction with the 8051 family is the lack of a proper stack; typically with a processor such as the 8086, the stack pointer is 16 bits (at least). Besides the basic stack pointer, there are usually other stack relative pointers such as a base pointer etc. The 8051 only has one 8-bit stack pointer register and one 16-bit Data Pointer (some derivatives have up to 8 DPTR's but they are not easy to use and their overhead makes it more sensible to think only in terms of 1 DPTR). With these extra demands on the stack control system, the ability to access data on the stack is crucial. As already indicated, the 8051 family is endowed with a stack system which is really only capable of handling return addresses. With a maximum of only 256 bytes of stack potentially available, and typically around 40 bytes in practice, it would not take too much function calling and parameter passing to use this up. From this you might think that implementing a stack-intensive language like C on the 8051 would be impossible. Well, it very nearly has been! While there have been compilers around for some years now that have given C to 8051 users, they have not been very effective. Most have actually been adapted from generic compilers originally written for more powerful micros such as the 68000, x86 and GNU. The approach to the stack problem has largely been through the use of artificial stacks implemented by using 8051 opcodes. Typically, an area in external RAM is set aside as a stack; special library routines manage the new stack every time a function is called. While this method works and gives a re-entrant capability, the price has been very slow runtimes and larger code. The net effect is that the processor spends too much time executing the compilers own code rather than executing your program! Besides the inherent inefficiency of generating a new stack, the compiled program code is not highly optimised to the peculiarities of the 8051. With this entire overhead, the provision of
www.hitex.co.uk
page 11 of 190
banked switch expanded memory, controlled by IO ports, becomes almost a necessity! Whilst most compilers and debuggers and ICE can now handle bank switched memory well it is not a route you should really expect to go down. Therefore, with the 8051 in particular, the assembler approach to programming has been the only real alternative for small, time-critical systems. However, as far back as 1980, Intel produced a partial solution to the problem of allowing high-level language programming on its new 8051 in the shape of PLM51. This compiler was not perfect, having been adapted from PLM85 (8085), but Intel were realistic enough to realise that a full stack-based implementation of the language was simply not on. Note Intel discontinued PLM51 in 1986 at Version 1.4. Hitex still has a copy of this we use for compatability testing. The solution adopted was to simply pass parameters in defined areas of memory. Thus each procedure has its own area of memory in which it receives parameters and passes back the results. Provided the passing segments are internal the calling overhead is actually quite small. Using external memory slows the process but is still faster than using an artificial stack. The drawback with this compiled stack approach is that re-entrancy is now not possible. This apparently "serious omission" in practice does not tend to cause a problem with typical 8051 programs. However the later Keil C51 versions do allow selective re-entrancy, so that permitting re-entrant use of a few critical functions does not compromise the efficiency of the whole program. C on a microcontroller is practical for (among other things): (i) (ii) (iii) (iv) (v) (vi) Control of on and off-chip peripheral devices Servicing of interrupts Easily supporting different ROM/RAM configurations A very high level of optimisation to conserve code space Control of registerbank switching Support of enhanced or special family variants.
The Keil C51 compiler contains all the necessary C extensions for microcontroller use. This C compiler builds on the techniques pioneered by Intel but adds proper C language features such as floating point arithmetic, formatted/unformatted IO etc. It is, in fact, an implementation of the ISO C standard specifically for 8051 processors. This does render the possibility of writing portable ISO C. However, the resulatant application would be somewhat large and slow compared to one that used the 8051 specific extensions. It is for this reason that generic compilers that are ported to the 8051 are usually a very poor substitute for one that has been wriiten for 8051 from the start.
www.hitex.co.uk
page 12 of 190
2 Compiler Chain
There have also been some changes in the compile process. Many years ago programmers used terminals these were simply display screens with a keyboard, No inteliugence, they certainly din not run programs, and a text based screen. That is they could only display characters. Eg ASCII BAUDOT, EBSIDIC etc. They were usually 32, 60 0r 80 characters by 25 or 40 lines. The 80 by 40 were high resolution. As for colour, there was green text, or ogrange test or white text thats right, monochrome! The highlight of graphics in those days was setting a character to reverse video, flash or bold! Editors were single window but quite sophicticated. Some like VI and EMACS are still in widespread use today (late 2003) They had powerfull, and hard to master, key bindings and macros whey bay a Master could make multiple context sensitive replacements whith a minimum of key strokes. An art that still amazes and out performs the average windows user today. Having edited and saved ones files the next step was to compile the. Usualy by invoking: cc filename.c on the command line... Windows users should think of a DOS-Box. Some of you may have noticed I missed out Lint and the pre-processor. Well yes and no. It depends on your system. CC is not the compiler. It is a script of batch file. To build a program you would normally use MAKE: a program that would read a makefile for the project and process it. This would list al the c source files that related header files for each C file and the project build instructions. This would include Lint. It was assumed by Kernigan, Ritchie, Thompson and Johnson to be part fo the compiler chain. NOTHING HAS CHANGED. You should ALWAYS used lint when compiling C. The pre-processor whiles a separate module was usually included in the cc but as Lint has many more uses it was not. The cc compiler called the pre-processor and up to three compiler modules (i.e. two or three pass). These produced various intermediate files that were deleated during ther run and not usually seen by the programmer. The compiler turned out assembly language. The assembly was assembled in to object code. The multiple object modules were then linked with the libraries. The final line was a clean that removed all the intermediate files.
www.hitex.co.uk
page 13 of 190
Whilst modern compiler systems seem very different they do have the same basic system under the IDE. It is the advent of modern GUI interfaces that brought abiout this change. Incidentally it was Xwindows on Unix that led the way long before MS Windows. A modern compiler such as the Keil C51 the IDE is simpley an editor and project control system. In the case ofd the Keil system and many others, the compiler and linker etc are still called by command line or scripts though this is invisible to the user.. Thecompiler is a single pass compiler that outputs object code ready for linking. The C51 incorperates the pre-processor, cc1,2 and 3 in the same program. It also, normally skips the assembly phase producing object code ready for linking. As we will see in later chapters it is still possible to get the compiler to turn out assembler but this is the exception rather than the rule. It is at the linker phase that the standard and user libraries are linked in to the program. With the modern compiler system it is still easily possible to have both C and assembly modules in the same project. A project "Build" using the Keil uVision IDE is still a single mouse click wether it is all C, all assembler or mixed assembler and C modules. Indeed the Keil C51 compiler suite will still work with the Intel PL/M compiler making it possible to mix PL/M, C and Assembler modules. This makes the Keil Environment suitable for transitioning from PLM or assembler to C for legacy projects. Students should note that in the bottom window of the target options dialogues is the command line that the Keil IDE feeds to the compiler and linker. Students should try, at least once to use these strings in a batch file to build one program to see how the system works under the hood. In short the IDE simple collects and automates amny tools into one interface. A knowledge of wehat is under the hood is usefull. As a final point ALL C compilers require the Hello World program to be run as an initialisation program. Ok so this is not true but it is a good first program to run to prove the installation. With Keil compilers Blinky
www.hitex.co.uk
page 14 of 190
www.hitex.co.uk
page 15 of 190
The lower 48 bytes of the DATA space are reserved. The first 8 bytes are registers R0-R7. These are all general purpose 8 Fig 2. The DATA memory Space bit registers though R0 has other uses as well. There are 4 identical sets of registers called Banks. Bank 0 -Bank3 from D:00 to D:1F Fig 2. The DATA memory Space There are 16 bytes of bit addressable RAM from D:20 to D:2F . This is where 8051 C starts to deviate from the ISO C standard. There is no type called "BIT" in C. This is why truly portable ISO C is not efficient for 8051 and efficient 8051 code is not portable. Above 80H the special function registers are located. these run from 80h to FFh. The SFR's, like the DATA block are directly addressable. This is the "SFR" box in fig 1. The SFR's are usually addessed by name such as SYSCON (these names are set up by header or include files). Many of the SFR's are defined in the standard 8051 architecture. The spaces between the standard SFR's are used by 8051 manufactures for their own use such as CAN interfaces, USB, A to D and many other peripherals. As the SFR block is not really conventional RAM but a series of hard wired registers. Where there is no SFR defined there is no empty register or memory byte for the user. Another "convention" is that if an SFR address ends in 0 or 8 the bits in the register are directly and individually addressable. This means that bits can be set without have to mask and write the whole byte. A second memory area exists between 80H and 0FFH. . The IDATA is only indirectly addressable (MOV A,@Ri) and is prefixed by I: and known as IDATA. This is box 2 in fig1. It effectivly effectively overlays the directly addressable SFR area. This constitutes an extended on-chip RAM area and was added to the 8051 design when the 8052 appeared. As it is only indirectly addressable, it is best left for stack use, which is, by definition, always indirectly addressed via the 8-bit stack pointer SP. Just to confuse things, the normal directly addressable DATA RAM from 0-80H can also be indirectly addressed by the MOV A,@Ri instruction! A third memory space, the CODE segment, box 3 in fig1. also starts at zero, but this is reserved for the program CODE. It typically runs from C:0000 to C:0FFFFH (65536 bytes). The CODE segment is accessed via the program counter (PC) for opcode fetches and by DPTR for data, both registers beiong 16-bit. Obviously, being ROM, only constants can be stored here. However with the advent of FLASH it is possible to change data in the CODE Space. Some new parts permit the application to load new blocks of code via an ISP interface.
www.hitex.co.uk
page 16 of 190
In the original 8051 the CODE space on chip and was 4K of either ROM or EPROM. In the 8052 the on chip CODE space was 8K ROM. Though both of these parts could access aditional off chip ROM. The 8031 and 8032 had off chip CODE space and none on chip. The modern 8051 variants (over 320 of them) have all manner of on chip ROM, OTP, EPROM, EEPROM and FLASH from 2k to 64K. Though in 2000 Philips announced plans for more than 64K of on chip FLASH CODE space. There are also many variants that only have off chip CODE space. Off chip memory is addressed by using ports 0 and 2 for data and address lines.With extermal memory these ports can not be used for any other purpose. On parts that have internal or on-chip CODE space there is a way of selecting to use the internal or external memory. This is achived by the EA line. When EA =1 the internal memory is used until the the end of the internal memory is reached. If the internal memory is less than 64K external memory will be accessed above the internal space. It is for this reason that if the internal memory is less than 64K and there is no external memory the last byte of internal CODE space should not be used. If it is the PC (program counter) will increment to the "next instruction" which is external. This will make ports 0 and 2 act as the address and data bus. This can wreak havoc if the ports are used as IO. If the EA is set to 0 only the external memory is used. The EA pin is usually tied high or low and not toggled by the program. It has generally been possible to have more than 64K of CODE space. This is done by using I/O lines from a port as additional adress lines to switch overlayed blocks of memory. Usually in the range 32k to 64K with common code in 0 to 32k A fourth memory area is also off-chip, eXternal DATA, starting at X:0000. This is box 4 in fig1.This exists in an external RAM device and, like the C:0000 segment, can extend up to X:0FFFFH (65536 bytes). The X: prefix implies the external XDATA segment. The 8051s only 16-bit register, the DPTR (data pointer) is used to access the XDATA. When using off chip CODE and or XDATA ports 0 and 2 are used to provide the multiplexed address and data lines. Finally, 256 bytes of XDATA can also be addressed in a paged mode This is box 5 in fig1. Here an 8-bit register (R0) is used to access this area, termed PDATA. When accessing PDATA only port 0 is used. You may have noticed the EDATA block on the diagram. This is a new 8051 extension used by Philips. This is Extra DATA, it has also been known as AUX DATA. It is 256 bytes (and 768 bytes in some parts) This block of memory has been included here to illistrate the point that whilst the 8051 core memory, DATA, SFR, IDATA, XDATA and CODE are well defined the dozen or so 8051 manufacturers add their own extensions from time to time. Siemens (now Infineion) has some 8051's with on-chip (currently ) XDATA..... The obvious question is How does the 8051 prevent an access to D:00 resulting in data being fetched from C:0000? The answer is in the 8051 hardware. When the cpu intends to access D:00, the on-chip RAM is enabled by a purely internal READ signal - the external /RD pin is unchanged. The following examples are all in assembler as C hides this addressing process. Note the /RD and /WR pins are shared wirth port 3 pins 6 and 7 These can only have one purpose and may not chagne once their use has been established.
www.hitex.co.uk
page 17 of 190
MOV
A,40
This addressing mode (direct) is very fast and the basis of the SMALL memory model.
MOV MOV R0,#0A0H A,@R0 ; Put the value held in IDATA location 0A0H into ; the accumulator
This addressing mode is used to access the indirectly addressable on-chip memory above 80H and as an alternative way to get at the direct memory below this address. A variation on DATA is BDATA (bit data). This is a 16 byte (128 bit) area, starting at 020H in the direct segment. It is useful in that it can be both accessed byte-wise bythe normal MOV instructions and addressed by special bit-orientated intructions, as shown below:
SETB CLRB 20.0 20.0 ; ;
The external CODE memory device at C:0000 is not enabled during data RAM access. In fact, the CODE memory is only enabled when a pin on the 8051 named the PSEN (program store enable) is pulled low. There is an internal equivelent when using on-chip CODE memory. The XDATA RAM and CODE EPROM do not clash as the XDATA device is only active during a request from the 8051 pins named READ or WRITE. To help access the external XDATA RAM, special instructions exist, conveniently containing an X.... MOV
MOV DataPoinTeR MOVX address is
A,#40h
DPTR,#08000H A,@DPTR
contained in the DPTR register (8000H). ie put 40h in to external data address 08000h.
The above addressing mode forms the basis of the LARGE model.
MOVX MOVX R0,#080H A,@R0 ; ;
This alternative access mode to external RAM forms the basis of the COMPACT memory model. Note that if Port 2 is attached to the upper address lines of the RAM, it can act like a manually operated paging control. The important point to remember is that the PSEN pin is active when (CODE) instructions are being fetched; The external READ and WRITE are active when MOVX.... (move external) DATA instructions are being carried-out.
www.hitex.co.uk
page 18 of 190
www.hitex.co.uk
page 19 of 190
www.hitex.co.uk
page 20 of 190
This often seems somewhat overwhelming. However, if taken step at a time it is not. A basic understanding will cover most usage. It is really only when pushing the limits in-depth knowledge is required. However, some thought before and durring programming will pay off in the long run. As with all the settings they can be obtained by point and click in the uVision IDE, by command line and, optionally, by #pragma in the source files themselves. The memory model settings in the Keil uVision IDE are found by right clicking on the "Target" in the project window and selecting "options" onthe pop-up menu.
www.hitex.co.uk
page 21 of 190
array[1][1] = 'X';
is illegal since it's in ROM. Do remember that for arrays in C the firsr ellerment is always 0. So the above array has elerments 0,0 to 2,4.
www.hitex.co.uk
page 22 of 190
all the CODE memory is on chip this is the smallest and fasted configuration. For the 8051/31 specifically there is no IDATA so the total amount available is 128 bytes of DATA. Only the 128 Bytes of directly addressable DATA will be available using this memory model even when using an 8052 derivative. Note that when optimising the C51 compiler will use Register banks 1-3 as ordinary memory if they user is not explicitly using them, usually for inrterupts. The "Overlay Variables" compiler switch should be used if possible in this model. Note that the stack size is critical in this model and therefore will limit the nesting of C functions. Therefore few, larger functions may be better than lots of small ones that could lead to deeper nesting. Not only is this the fastest model it also results in smaller code, as the addessing is direct or 1-byte pointers. This model also tends to lead to occurrences of the Linker warning L128 complaining about data segment overflow.
www.hitex.co.uk
page 23 of 190
Single chip 8051 users may only use the SMALL model, unless they have an external RAM fitted which can be page addressed from Port 0 and optionally, Port 2, using MOVX A,@R0 addressing. This permits the COMPACT model. While it is possible to change the global memory model half way through a project, it is not recommended! There are other versions of the 8051 family that now have large amounts of additional "Aux", "Extra" or additional "on chip Xdata"memory on chip that can be used with the other memory models so single chip may not always mean small memory modle these days. As with the ROM model selection the data memory model can be selected in the IDE is is also possible to force individual modules, functions and variables into spesific data models. This will be covered later.
3.3.3.2 COMPACT :- Total RAM 256 bytes off-chip, 128 or 256 bytes on-chip.
Suitable for programs where, for example, the on-chip memory is applied to an operating system. The compact model is rarely used on its own but more usually in combination with the SMALL switch reserved for interrupt routines. COMPACT is especially useful for programs with a large number of medium speed 8 bit variables, for which the MOVX A,@R0 is very suitable. It can be useful in applications where large stack is required, meaning that data needs to be off-chip. Note that register variables are still used, so the loss of speed will not be significant in situations where only a small number of local variables and/or passed parameters are used.
www.hitex.co.uk
page 24 of 190
DATA:- 128 bytes (SMALL model default location) Best For: Frequently accessed data requiring the fastest access. Interrupt routines whose run time is critical should use DATA, usually by declaring the function as "SMALL". Also, background code that is frequently run and has many parameters to pass. If you are using re-entrant functions, the re-entrant stacks should be located here as a priority. Worst For: Any variable arrays and structures of more than a few bytes. IDATA:- 256 Bytes indirectly addressed Idata has a range of 256 bytes an can use instructions such as MOV @ Ri, A where Ri may be R0 or R1. Note that the lower 128 bytes of IDATA is the DATA space. Best For: Fast access data arrays and structures of limited size (up to around 32 bytes each) but not totalling more than 64 or so bytes. As these data types require indirect addressing, they are ideally placed in the indirectly addressable area. It is also a good place to locate the stack, as this is by definition indirectly addressed.
CODE :- 64K (or more with banking) Best For: Constants and large lookup tables, plus opcodes, of course! Worst For: Variables.
PDATA :- 256 bytes in paged XDATA (COMPACT model default area ) Best For: Medium speed interrupt and fast background char (8 bit) variables and moderate-sized arrays and structures. Also good for variables which need to be viewed in real time using an emulator. Worst For: Very large data arrays and structure above 256 bytes. Very frequently used data (in interrupts etc..). Integer and long data. XDATA :- 64K (LARGE model default area) Best For: Large variable arrays and structures (over 256 bytes). Slow or infrequently-used background variables. Also good for variables which need to be viewed in real time using an emulator. Worst For: Frequently-accessed or fast interrupt variables.
www.hitex.co.uk
page 25 of 190
Note that the normal XDATA area now starts at 0x100, above the zero page used for PDATA. Failure to do this properly can result in very dangerous results, as data placement is at the whim of PORT2!
www.hitex.co.uk
page 26 of 190
In the example above the main() and any other function not specifically changed is COMPACT, fsmall is locally set to SMALL and flarge is locally set to LARGE Note on main:- Whilst the ISO C standard defines 2 mains :int main (argv, argc)
and
int main (void )
In self hosted embedded systems i. e. where there is no operating system "void main (void)" is permitted.
www.hitex.co.uk
page 27 of 190
The cause is that in modules compiled as COMPACT, C51 creates references to library functions in the COMPACT library, whilst the SMALL modules will access the the SMALL library. When linking, L51 finds that it has two putchars() etc. The solution is to stick to one global memory model and then use the SMALL function attribute, covered in the previous section, to set the memory model locally. Example:
www.hitex.co.uk
page 28 of 190
Note that const does not mean "code". Objects declared as "const" (but not CODE) will actually end up in the data memory area determined by the current memory model.
const unsigned char tens[] = { 1, 10, 100, 1000 };
will be stored in the heap, never on the stack if it is outside the scope of a function. It will exist in DATA if you use the small model and XDATA if you use the large model. The keyword const is a compiler system prevents the data being changed by the program. The key word CODE stops the data being changed by the fact that it is physically impossible to write to CODE space. (We will see later that it is possible to wire CODE space so it can be written to. Also some FLASH parts do permit the changing of CODE space. However code space should not normally be changed.) Tip:- Use "const" in function prototypes when passing in a value that should not be changed in the function. eg func( const char count ). An associated key word is "volatile". This is used where a variable is not changed by an application but by the hardware. Thus a declaration like
char volatile variable_name;
will create a variable may be updated by "something" other than the application. This stops the compiler optimising out the variable reads where apparfently nothing has written since the last read.. The Special Function Registers (SFR) are by default "Volatile". One, less obvious, case in point was a memory test routine that wrote to to the memory and then imediately read it back. The compiler, not a Keil one, "speeded up" the memory test by optimising out the write and subsiquent read to the memory location. The memory test was fast... but it never touched the physical memory. Defineing the variable as "Volatile" forced the compiler to give the behaviour required. Note the declaration
www.hitex.co.uk
page 29 of 190
is valid. This tells the compiler that the variable is a constant and the application can not change it but something else (i. e. the hardware) might change it. Obviously, any large lookup tables should be located in the CODE area - a declaration might be:
unsigned char code default_base_fuel_PW_map[] = { 0x08,0x08, 0x00,0x00,0x00,0x09,0x41,0x80,0xC0,0xFF, 0x00,0x00,0x13,0x1A,0x26,0x33,0x80,0xFF, 0x00,0x00,0x00,0x09,0x41,0x80,0x66,0x66, 0x00,0x00,0x00,0x05,0x4A,0x46,0x40,0x40, 0x00,0x00,0x00,0x08,0x43,0x43,0x3D,0x3A, 0x00,0x00,0x00,0x00,0x2D,0x4D,0x56,0x4D, 0x00,0x00,0x00,0x00,0x21,0x56,0x6C,0x6F } ;
With large objects like the above it is obviously important to state a memory space. When working in the SMALL model in particular, it is very easy to fill up the on-chip DATA RAM with just a single table! RAM constants would be:
unsigned char scale_factor = 128 ; unsigned int fuel_constant = 0xFD34 ;
These could, however, have their values modified during program execution. As such, they are more properly thought of as initialised variables - see section 3.2.2.
4.2 Variables
4.2.1 Uninitialised Variables
Naturally, all variables exist in RAM, the configuration of which is given in section 2.1.1. Note the MISRA-C guide (Rule 30) says that all variable shall have been asigned a value before use. It is always a good idea to set all variables to a known value. Ie set pointers to NULL and other variables to 0 or a set error condition. Thus if they are not set elsewhere before use it is would be possible to detect this. However as this takes time in startup it is some times not a good idea. Many embedded systems are required to come alive in a very short (and precise) time. The setting in the uVision IDE will determine the overall memory model or the #pragma memory_model line in the file. In all examples in this guide the #pragma line will be used to highlight the global model in use. In this case, all variables are placed within the on-chip RAM. However, specific variables can be forced elsewhere as follows:
#pragma SMALL unsigned char xdata engine_speed ; signed char xdata big_variable_array[192] ;
This will have engine_speed placed in an external RAM chip. Note that no initial value is written to engine_speed, so the programmer must not read this before writing it with a start
www.hitex.co.uk
page 30 of 190
value! This xdata placement may be done to allow engine_speed to be traced on the fly, by an in-circuit emulator for example. In the case of the array, it would not be sensible to place this in the on-chip RAM because it would soon get filled up with only 128 bytes available. In this case as the array is indirectly addressed the array could reside across DATA and IDATA. This is a very important point never forget that the 8051 has very limited on-chip RAM. Another example is:
#pragma LARGE . function(unsigned char data para1) { unsigned char data local_variable ; . . }
Here the passed parameters are forced into fast directly addressed internal locations to reduce the time and code overhead for calling the function, even though the memory model would normally force all data into XDATA. In this case it would be better to declare the function as SMALL, even though the prevailing memory model is large. This is extremely useful for producing a few fast executing functions within a very big LARGE model program. On a system using paged external RAM on Port 0, the appropriate directive is pdata. See notes in section 2.1.3 for details on how to best locate variables.
Here the value 0 will be written to the variable before any function can access it. To achieve this, the compiler collects together all such initialised variables from around the system into a summary table. A runtime function named C_INIT is called by the startup.obj program which writes the table values into the appropriate RAM location, thus initialising them. startup.obj comes from startup.a51 and assembly file. This is automatically included by the linker unless a local startup.a51 is used to override it. Immediately afterwards, the first C program main() is called. Therefore no read before write can occur, as C_INIT gets there first. The only point to note is that you must modify the startup.a51 program to tell C_INIT the location and size of the RAM you are using. For the large model, XDATASTART and XDATALEN are the appropriate parameters to change.
www.hitex.co.uk
page 31 of 190
; User-defined Power-On Initialization of Memory ; With the following EQU statements the initialization of memory ; at processor reset can be defined: ; the absolute start-address of IDATA memory is always 0 IDATALEN EQU 80H ; the length of IDATA memory in bytes. XDATASTART EQU 0H ; the absolute start-address of XDATA memory XDATALEN EQU 0H ; the length of XDATA memory in bytes. PDATASTART EQU 0H ; the absolute start-address of PDATA memory PDATALEN EQU 0H ; the length of PDATA memory in bytes. ; Notes: The IDATA space overlaps physically the DATA and BIT areas of the ; 8051 CPU. At minimum the memory space occupied from the C51 ; run-time routines must be set to zero. ;-----------------------------------------------------------------------------; Reentrant Stack Initilization ; The following EQU statements define the stack pointer for reentrant ; functions and initialized it: ; Stack Space for reentrant functions in the SMALL model. IBPSTACK EQU 0 ; set to 1 if small reentrant is used. IBPSTACKTOP EQU 0FFH+1 ; set top of stack to highest location+1. ; Stack Space for reentrant functions in the LARGE model. XBPSTACK EQU 0 ; set to 1 if large reentrant is used. XBPSTACKTOP EQU 0FFFFH+1; set top of stack to highest location+1. ; Stack Space for reentrant functions in the COMPACT model. PBPSTACK EQU 0 ; set to 1 if compact reentrant is used. PBPSTACKTOP EQU 0FFFFH+1; set top of stack to highest location+1. ;-----------------------------------------------------------------------------; Page Definition for Using the Compact Model with 64 KByte xdata RAM ; The following EQU statements define the xdata page used for pdata ; variables. The EQU PPAGE must conform with the PPAGE control used ; in the linker invocation. PPAGEENABLE EQU 0 ; set to 1 if pdata object are used. PPAGE EQU 0 ; define PPAGE number.
www.hitex.co.uk
page 32 of 190
INC MOV .
DPTR R7,A
There is also a type called short. However as, in this implimentation, short is the same size as an int it is not required nor used. There is a myth that short is always 16 bits and more portable than int. This is not correct and the size of short is not precisly defined. Short should not be seen in an 8051 program.
Misra-C rule 13 requires the use of typedefs for standard types. Further to this ISO C99 recommends a similar thing and specifies a header file called inttypes.h. This contains the following types int8_t,
uint8_t, int16_t, uint16_t, int32_t and uint32_t that would be defined in C51 as:-
signed char unsigned char signed int unsigned int signed long unsigned long
There are, in ISO C99, also two pointer types which could be used for generic pointer and signed and unsigned 64 bit types which are not appropreate to the 8051. For most embedded work, especially on the 8051 whether the variable is a character or integer is imaterial. What is often far more important is the size of the data.
www.hitex.co.uk
page 33 of 190
typedef's
Note: There is no ISO C typedef for bits. Also bit variables are always placed in the bit-addressable memory area of the 8051 - see section 2.1.1 for this reason bits can not have a memory location modifier. By definition they must be in BDATA. With a processor such as the 8086, int is probably the commonest data type. As this is a 16 bit processor, the handling of 16 bit numbers is generally the most efficient. The distinction between int and unsigned int has no particular impact on the amount of code generated by the compiler, since it will simply use signed opcodes rather than the unsigned variety. For the 8051, naturally enough, the char should be the most used type. Again, the programmer has to be aware of the thoroughly 8 bit nature of the chip. Extensive use of 16 bit variables will produce slower code, as the compiler has to use library routines to achieve apparently innocuous 16 by 8 divides, for example. The use of signed numbers has to be regulated, as the 8051 does not have any signed arithmetic instructions. Again, library routines have to do the donkey work. An interesting development has been the Siemens 80C537, 717, 509 abd the Dallas 390 which have an extended arithmetic instruction set. For instance, 32 by 16 divide and integer instructions. Indeed, this device might be a good upgrade path for those 8051 users who need more number crunching power and who might be considering the 80C196 or C16* family. A suite of runtime libraries is included with the Keil C51to allow the compiler to take advantage of the enhancements. This uses the MOD517 directive to the compiler. In uVision2 this is an automatic selection whent he target choice is made. For older versions and command line use #pragma MOD517
www.hitex.co.uk
page 34 of 190
To use this:
char bdata test ; sbit sign = test^ 7 ; void main(void) { test = -1 ; if(test & 0x80) /* Conventional bit mask and & */ { test = 1 ; /* test was -ve */ } if(sign == 1) /* Use sbit */ { test = 1 ; /* test was -ve */ } }
Here, using the sbit, the check of the sign bit is a single JNB instruction, which is a lot faster than using bit masks and &s in the first case! The situation with ints is somewhat more complicated. The problem is that the 8051 does not store things as you first expect. The same sign test for an int would still require bit 7 to be tested. This is because the 8051 stores ints high byte at the lower address. Thus bit 7 is the highest bit of the higher byte and 15 is the highest bit of the lower. Bit locations in an integer High byte Low Byte 7,6,5,4,3,2,1,0, 15,14,13,12,11,10,9,8
www.hitex.co.uk
page 35 of 190
Another useful place bit types can be used is in the SFR's that end on 0 or 8. For example the IO ports. Port 1 may be defined in a header file as:
sfr P1 = 0x90;
However:
unsigned char x = 10; unsigned char y = 50; unsigned char z ; z = x * y ;
results in z = 244. The true answer of 500 (0x1F4) has been lost as z is unable to accommodate it. The solution is, of course, to make z an unsigned int. However, it is always a good idea to explicitly cast the two unsigned char operands up to int thus:
unsigned char x ; unsigned char y ; unsigned int z ; z = (unsigned int) x * (unsigned int) y ;
C51, since Version 3, will automatically promote chars to int in it's natural state. This is called "Interget Promotion Rule" and is a requirement of the compiler for ISO comformance. It could be argued that on any small microcontroller you should always be aware of exactly what size data is at al times. It is possible to disable this feature in most versions of the Keil C51 compiler. Why would you wanrt to do that? Well, assuming that you do know the maximum size of your data, and that
www.hitex.co.uk
page 36 of 190
there are suitable check for our of range data, it is faster and the code is smaller. In previous sections it was highlighted that the 8051 is an 8 bit MCU. It can handle 8 bit chars far faster than 16 bit ints. So where you know the sizes of your data, and be very sure you do, switch off the Integer Promotion for faster smaller code. There will be no warnings unless you are using Lint.
void main(void) { RSEG ?PR?main?T USING 0 main: ; if(((unsigned int)x + (unsigned int)y) > 0xff) { MOV A,x ADD A,y MOV R7,A CLR A RLC A MOV R6,A SETB C MOV A,R7 SUBB A,#0FFH MOV A,R6 SUBB A,#00H JC ?C0001 ; z = 0xff ; /* ISO C version */ MOV z,#0FFH ; }
In this case the carry flag, CY, is checked directly, removing the need to perform any integer operations, as any addition resulting in a value over 255 sets the carry. Of course, this is no longer ISO C as a reference to the 8051 carry flag has been made.
?C0001: ; z = x + y ; MOV A,x ADD A,y MOV z,A ; ; if(CY) { JNB CY,?C0003 ; z = 0xff ; /* C51 Version using the carry flag MOV z,#0FFH ; } ?C0003: RET
*/
www.hitex.co.uk
page 37 of 190
The situation of an integer compare for greater than 65535 (0xffff) is even worse as long maths must be used. This is almost a disaster for code speed as the 8051 has very poor 32 bit performance, (excepting the C537, 517, 509, 390). The trick of checking the carry flag is still valid as the final addition naturally involves the two upper bytes of the two integers. In any high performance 8051 system this loss of portability is acceptable, as it allows run time targets to be met. This again illistrates that good 8051 C may not be portable or pure ISO C. The alternative, using pure ISO C, might mean that a different, more powerful processor has to be used. Thus bringing up unit costs. This does not mean that solid good practice should be ignored. It is just that there are some non-standard architecture specific non-ISO-C extensions that can be used.
www.hitex.co.uk
page 38 of 190
Customer
Cash
Print Slips
For the 8051, using mainly C or assembler, the structured or modular design methods should be used. Structured or modular designed software is the C equivelent of the Object Orientated Programming used with C++, Ada and the like. Both Structured and OO programming share many concepts and good modular programming has many of the attributes of OOP but due to the differences in the way the languages work can not have all of them. For the 8051 a structured method like Yourdon (one of the more popular) would be used. The Yourden method has several views of the software and it is worth looking at these as an example as to why modular programing should be used on all systems.
www.hitex.co.uk
page 39 of 190
The top diagram shown here is a top level Context diagram. This shows all the inputs and outputs to a system. In this case an ATM. This defines the outer limits of the system. It could equaly be an Automitive engine control or a washing machine. In the case of my car there are mor similarites than I would care to acknowledge!
Password
Message
Get Password 1
Cash Card
Entered Password
Keyed Data
Service Request
T Services Required
The next level down is what happens inside the main circle. As can be seen this has broken the system down in to descrete operations linked by data and control flows. This is top down modeling. Now the functionality and indeed functions start to appear. The view changes slightly for the next diagram. However, this clearly shows the structure
Message
Cash Amount
Cash
Customer Details
Bank Transaction
of the software, as opposed to the system. It is not clear at this point if each box is a single function or a collection of functions, in effect a module.
Await Cash
Control Transaction
Get Card Transaction With Cash In some methods Password Entry Customer Card the actual data or control c1 information Proceed With Transaction passed between these functions would be shown. These functional Get Required Process Required boxes can be Services Services either single functions (is source code) or broken down further into similar charts containing several boxes (ie C functions). Some systems may have several layers of child charts such as the one shown.
Process
Eject
The interesting thing is that there are no actual implimentation details shown. "Get Pasword" or "Await Cash Card Entry" are generic. This is where modular software containing more than one file starts to become the obvious answer.
www.hitex.co.uk
page 40 of 190
In this diagram it is just a "Get password" box. However if all the source associated with this diagram were all in one file any change would result in a re-compilation of the whole file. By making the "Get Password" or "Await Cash Card Entry" a seperate file we get modularity and if there are any changes to the "Get Password" module only that file need to be recompiled. The rest only needs to be re-linked. It also gives the added advantage that should a different password system be used only the one file requires modifications. In this case there would probably be a selection of "Get Password" modules depending on the customer the algorithm or the hardware. Thus the main code loop can be reused. Note C had reuse long before the C++ and OOP crowd "invented" it! The diagrams so far were generated using the Select Yourden tool. The next diagram is a little different to the one above. This was generated by the DA-C that reverse engineered the C source code. This example has gone a little to the extreme to demonstrate the point. As with all things common sense should be used.
eject_Cash _card
ej ect.c
p roc es s _ se rvice s
s ervices .c
proceed
proces s .c
Main
m ain.c
g et_ se rvice s
s ervices .c
await_cash _card_Entry
w aitca rd .c
ge t_p as sword
get_pas s w ord.c
This is the basic layout of the empty C functions. As can be seen there is one C function per file. The exceptions are the Process and Services files. This is because the Process file has the option to either proceed or not and the Services file would contine both the list of services availavle as well as the interface to them. Thus if the services were to change only the one module would need changing. Apart from making the program more manageable in that file listings are shorter and functionality is contained there are other benefits. Data security. Many variables can be made local to the one file. With data overlaying enabled ( see Linker manual) this saves much space on an 8051. Simply put the linker can "overlay" local parameters in the same memory space. As a General Rule only make a variable Global if you really have to. Global variables take up permanent residence in the (very limited) memory. There are also similar arguments for functions. By making functions that are only used in one file static they will only be visible in the one file.
static unsigned char proceed( unsigned char code);
This is rather like the encapsulation the OO programmers like. It does help the C programmer because only the functions declared as extern will be available outside the file. This gives a defined interface to a file and permits internal changes to a file without having to make changes outside the file. For this to work
www.hitex.co.uk
page 41 of 190
well more thought must be given to the functions used as interfaces so that the possibility of changes to them is kept to a minimum. The use of static functions also makes smaller faster programs as the compiler knows that the function will only be used in the one file and smaller faster jumps can be used.
www.hitex.co.uk
page 42 of 190
Pointers, of course, are the grey area as they can be used where only two or three bytes of a pointer need to be passed in order to give access to a large array of many bytes. The correct use of the pointer variable declaration can "hide" access to an array that is permanently in memory. Only the pointer to an array should be passed not the array itself. Care should be taken with variables to conserve storage space. The code below is an example of scope (not how to write good code!). The use of blocks in the function Calculate_key below is quite useful, if an under used part of C, where a large number of temporary variables are required. A block may be defined anywhere in c simply by using a pair of {}. NOTE that by default functions are "Extern" however it is good practice to use the extern (or static). /****** Start of code ********/ extern int system_flags; /*defined in another module */ extern unsigned char get_password(unsigned char status); /* function visable in other modules */ /* three functions only visable in THIS file */ static long calculate_key(void); static long gen_randon_prime(); long int password_flags; /* variable visable in other files */ unsigned char get_password(unsigned char status) { /* varuiables only visable in this fuuction */ unsigned char pass_status; long int key_status; key_status = calculate_key(); if (status > 0) { pass_status = key_status; } else { pass_status = 0; } } return pass_status;
static long int calculate_key(void) /* finction only visable in this file */ { int temp_1; /* variables visable in this functiion only */
static long int temp_key = 0; /* static variable is only initialsed ONCE */ /* at program start up. The variable is only visable*/ /* in this function but is not destroyed at the end */
www.hitex.co.uk
page 43 of 190
/* of the function call and retauns its value for the */ /* next time the function is called. */ {
/* four variables only visable in this BLOCK WITHIN the function. */ /* note this can be done in a for, while, do or if block as wel as */ /* a block simpley decalred betewwn two {} */ long int prime_1; long int prime_2; long int key_a; long int key_b; prime_1 = gen_randon_prime(); prime_2 = gen_random_prime(); key_a = ((prime_1 -1) * (prime_2 -1)); key_b = temp_key = prime_1%temp_1 ; key_a + key_b;
www.hitex.co.uk
page 44 of 190
return pass_status; }
required a function prototype Unlike the older K*R style where the parameters were placed after the function name but before the first opening brace the new style required that the parameters were placed between the brackets in the function name as they would be in a function call. Thus the prototype for the function above would be:
unsigned char get_password(unsigned char status);
Whilst the C-89 did require the parameter types it did not require that the parameters be names as well. So the prototype for the call above could be:
unsigned char get_password(unsigned char);
www.hitex.co.uk
page 45 of 190
However his way lies madness..! The parameter name should always be included and to be absolutely correct the new ISO-C99 typedefs (as per MISRA-C Rule 13) should be used as well giving a prototype of :
UINT8_T get_password(UNIT8_T status);
This prototype system could make matters worse if incorrectly used! I have seen the problem of inter-module maintenance on a grand scale. A multi-module program had some functions changed. All the programmer did was copy the new function prototype and recompile. Then in any module that did not compile, he pasted the new prototype. Next he did went to each error and pasted the new function call. The problem was, in most cases, he forgot to remove the original (now incorrect) prototype. The program was littered with redundant prototypes and in some cases unused data. The other problem was that as the old function prototype was in some of the modules they did not complain where there were calls to the old function that had been missed. This only appeared at link time. We will shortly show how this can be avoided and maintenance greatly improved. In large programs with many functions and global variables, the global area preceding the executable code can get very untidy and cumbersome. Though Global variables should be kept to a minimum. There is an argument that says it is good to have to have external references at the top of a module when first using a new piece of global data. This is because it means that you are always aware of exactly which items are used. This is fine in theory but rarely works in practice and ends up with a maintenance nightmare. It is preferable to have a single include or header file incorporated as a matter of course in each source file, containing an external reference for every global item, regardless of whether the host file actually needs them all. However, this is not the best solution. It is an improvement that there is only one version of the definition. A solution to this is to have module-specific include files. Basically, for each source module .c file, a second .h include is created. This auxiliary file contains both original declarations and function prototypes plus the external references. It is therefore similar in concept to the standard library files used in every C compiler. Stdio.h for example. NOTE: Many libraries were written a long time ago and may conform to K&R C not the ISO C89 or current C99. For example the code in the top of the password.c file is:extern int system_flags; /*defined in another module */ extern unsigned char get_password(unsigned char status); /* function visable in other modules */ /* three functions only visable in THIS file */ static long calculate_key(void); static long gen_randon_prime(); long int password_flags; /* variable visable in other files */
the get password would go into the password.h file but the static (local) functions would not. This is for two reasons. Firstly they are only used in the password.c file and secondly that it will create a compile error when password.h is used in any other c file.
www.hitex.co.uk
page 46 of 190
These variables need to be extern in all files bar the one in which they are defined. The trick is, however, to use conditional compilation. This will prevent the original declarations and the external versions being seen simultaneously. When included in their home modules, i.e. when password.h is included in password.c, the compiler only sees the original declarations. Whereas, when included in a anyother module, only the external form is seen. To do this each source module must somehow identify itself to the include file. This is very simply done with #define statements. A #define is placed at the top of each module giving the name of the module. Thus in the top of password.c the first line should be something like
#define _PASSWORD_C /* /* <> denotes system or library header*/ denotes local or application header*/
#ifdnef _PASSWORD_H #define _PASSWORD_H #ifdef _PASSWORD_C UNIT8_T get_password(UNIT8_T status); INT32_T password_flags; #else extern UNIT8_T get_password(UNIT8_T status); extern INT32_T password_flags; #endif #endif
When included in its home module, Password.c the #ifdef #else #endif will cause the preprocessor to see the local declarations. When placed in any other modules ie that do not have _PASSWORD_C defined, the preprocessor will see the external equivalents. There are a couple of points with regard to the extern on the function and the check for the home file. Firstly that by implication all function prototypes are extern. As an embedded Engineer the word implied should not be in your vocabulary. Things should be explicit. This was discussed, extensively, in both the C and embedded circles in late 2000 and the view was it is better to be explicit than implied in this case.
www.hitex.co.uk
page 47 of 190
The other point Keil supports __FILE__ and some may be tempted to use it in the header but it is not of practical to use in this context, as its value cannot be used for a #define name. Besides, even if it was possible it would not be Good Practice. We have slipped another guard in here as well that requires explanation.
#ifdnef _PASSWORD_H #define _PASSWORD_H . . #endif
This has the effect of including a header file only once. This is important. It does, marginally, cut down compile time but is not why it is done. It stops circular redefinitions. I might put a define in my header file:
#define MAX = 128
this will cause problems. Worst still if I re-include my original header file. I will get the sequence
#define MAX = 128 #define MAX = 256 #define MAX = 128
The problem is that for a period MAX was 256 and may have had an influence of one, many or no other data or defines before MAX was reset to 128. A very difficult bug to find. It can also mask other serious problems. On one project when some multiply included header files were unwrapped the program would not compile. The multiple definitions were masking a very deep seated bug. By only including module-specific header files in those modules that actually need to access an item in another module data is only visible to other parts of the program that need it. It also means that maintenance is easier. If the C file is changed the header is changed to match. The new changes are visible identically to all the modules that need it with no more editing. Where changes are required to the C file the header file can be relied on to be correct (or the home C file would not compile). This is where good design comes in to make sure that only minimal changes are required to function prototype parameter lists. In most embedded C dialects this can be a major help in program development. For example, a change in a widely-used functions memory model attribute, from small to large, can easily be propagated through an entire program; the change in the intelligent header file belonging to the functions home module! Heres how its done in practice:
www.hitex.co.uk
page 48 of 190
www.hitex.co.uk
page 49 of 190
www.hitex.co.uk
page 50 of 190
www.hitex.co.uk
page 51 of 190
the system. They can also "branch" that is hold several parallel version of a file. This Can be a god-send if you have to do maintain several different versions of an application at the same time. Most VC Scan also intergrate in to compiler IDEs, case tools , error reporting tools etc and can be used for most types of files not just source files. VCS cost from free to the "standard" packages at about a third of the cost of a Keil DK51 and on to the rolls Royce packages at about the cost of a Series 3 BMW. Most, and certainly all 8051 embedded applications, will only require the "standard" packages. There are several free unix RCS on the internet. Whilst not essential a VCS is very useful and if you have many versions of source or many applications with lots of modules. VCS can be well worth the money. The Keil C51 will intergrate any VCS that has a command line interface. Keil currently supplies interfaces for MKS, PVCS and Source Safe systems. Incidetally all VCs assume that you will be writing modular software.... In the ATM example shown I would use a VCS so I could maintain several different password modules, services modules etc. apart from using it to hold the other source modules. Thus I could almost instantly make a version od the software with any combination of password system and services. More to the point if I have to fix a bug in the password system or enhance it I onluy have to remake the one module and move the build labe on it to the newer version. I could then either compiler the one file and use the previous object files or rebuild the whiole project using the origional source. Summary If the Source templates are used with modular software and provided the necessary module name defines and globals are placed in the file or header as required the overall amount of editing required over a major project is usefully reduced. With the use of a VCS there is also a ful audit trail and instant recovery to older versions. Compilation and, more particularly, linking errors are reduced as there is effectively only one external reference for each global item in the entire program. For structures and unions the template only appears once, again reducing the potential for compilation and linking problems.
approach for most programmers with simple systems is either to use interrupts or to write a simple scheduler. Interrupts could be used for the very short things such as servicing IO but are not really practical for running an application.
The problem here is that it is static in that all the tasks and their initial running order will be known at compile time. The foreground interrupts are pre-emptive that is that the can preempt or override any task in the Round-Robin. Interrupts have priorities and may interrupt each other. For this reason, interrupt routines should be short and fast. These are now often written in C but it was quite common in the past to use assembler. Assembler is still used for interrupts so that they are as fast and small as possible. NOTE interrupts can be set to use one of the four sets of register banks using the using keyword. This means that there does not have to be a register save and restore in the interrupt making the interrupt faster. By default the program uses bank0 so careful use of the 4 banks can greatly enhance performance. The problem is that like all these tips there is no hard and fast set of rules. Usually data can be passed from background to foreground (or vice-versa) via global variables and flags. This essentially simple program model can be very successful if some care is taken over the order and frequency of execution of particular sections. The background-called functions must be written so that they can either complete quickly or if to long for a single slice they run a particular section of their code on each successive entry from the background loop. Thus each function is entered, a decision is taken as to which section of code do this time, the code is executed and finally the program is exited. Usually with some special control flags set up to tell the routine program what to do next time. Thus each functional block must maintain its own control system to ensure that the right code is run on any particular entry.
Task1()
www.hitex.co.uk
page 53 of 190
{ static uint8_t
flag;
Do remember though that this code is also taking up time and the scheduler itself will affect performance. Commercial RTOS will have figures for task, or context swapping etc. You will have to determine your own. An alternative is to control overall execution from a real time interrupt so that each job is allocated a certain amount of time in which to run. If a timeout does occur, that task is suspended and another begins. This is more complex as the state of the tasks has to be saved somewhere (and quickly). It does give the flexibility that tasks can be allocated different run times. I.e. The task loads a time to the interrupt counter. In the Round-robin system all functional blocks are considered to be of equal importance and no new block can be entered until its turn is reached by the background loop. Only interrupt routines can break this, with each one having its own priority. Should a block need a certain input signal, it can either keep watching until the signal arrives, so holding up all other parts, or it can wait until the next entry, next time round the loop. Now there is the possibility that the event will have been and gone before the next entry occurs. This type of system is OK for situations where the time-critical parts of the program are small. In reality many real time systems are not like this. Typically, they will consist of some frequently used code, the execution of which is caused by, or causes, some real-world event. This code is fed data from other parts of the system, whose own inputs may be changing rapidly or slowly. Code which contributes to the systems major functionality must obviously take precedence over those sections whose purpose is not critical to the successful completion of the task. However most embedded 8051 applications are very time-critical, with such parts being attached to interrupts. The need to service as many interrupts as quickly as possible requires that interrupt code run times are short. With most real world events being asynchronous, the system will ultimately crash when too many interrupt requests occur per unit time for the cpu to cope with. Fast runtimes and hence acceptable system performance are normally achieved by moving complex functions into the background loop, leaving the time-critical sections in interrupts. This gives rise to the problem of communication between background code and its dependant interrupt routine. The simple system is very egalitarian, with all parts treated in the same way. When the CPU becomes very heavily loaded with high speed inputs, it is likely that major sub-functions will not be run frequently enough for the real-world interrupt code to be able to run with sufficiently up to date information from the background. Thus, system transient response is degraded.
www.hitex.co.uk
page 54 of 190
Main() { while() { Switch(Priority) { case 1: task1(); task2(); break: case 2: task3(); break: case 3: task4(); task5(); break: default: task5(); } } }
Unfortunately all these tend to be bolt-ons, added late in a project when run times are getting too long. Usually what had been a well-structured program degenerates into spaghetti code, full of fixes and special modes, designed to overcome the fundamental mismatch between the demands of real time events and the response of the program. Moreover, the individual control mechanisms of the called functions generate an overhead which simply contributes to the runtime bottle-neck. The reality is that real time events are not orderly and predictable. Some jobs are naturally more important than others. However inconvenient, the real world produces events that must be responded to immediately. It is best to prototype first and look at what if scenarios. You will find that with a little thought a simple priority flag system can be developed. It is better to it in the initial stages where timing can be worked out. From experience I have found that in the case of a simple system that degenerates into bolt-ons and quick fixes it is better to re do the scheduler from scratch. Do not be tempted to re do the whole program. Just the scheduler not the tasks. This stops the system overheads becoming the problem. Frequency: However, under normal conditions it is a useful way of ensuring that low priority tasks are not executed frequently. For example, there would be little point in measuring ambient temperature more than once per second. In a typical system, this measurement might be at level 100 in a switch scheduler. To be able to make a judgement about how best to structure the program, it is vital to know the run times for each section.
www.hitex.co.uk
page 55 of 190
Where this simple method falls down is when a low priority task has a long run time. Even though the interrupt has requested that the loop returns back to the top level to calculate more data, there is no way of exiting the task until completed. To do so requires a proper time-slice mechanism. A useful dodge can be to utilize an unused interrupt to guarantee that high priority tasks will be run on time. By setting The most important factor overall is to keep run times as short as possible, particularly in interrupt routines. This means making full use of C51 extensions like memory-specific pointers, special function bits and local register variables.
www.hitex.co.uk
page 56 of 190
and so on. These declarations reside in header files such as reg51.h for the basic 8051 or reg552.h for the 80C552 and so on. It is the definition of sfrs in these header files that customises the compiler to the target processor. Accessing the sfr data is then a simple matter:
{ ADCON = 0x08 ; P1 = 0xFF ; /* Write data to register */ /* Write data to Port */
io_status = P0 ; /* Read data from Port */ EA = 1 ; /* Set a bit (enable all interrupts) */ }
It is worth noting that control bits in registers which are not part of Intels original 8051 design generally cannot be bit-addressed. The rule is usually that addresses that are divisible by 8 are bit addressable. Thus for example, the serial Port 1 control bits in an 80C537 must be addressed via byte instructions and masking. Always check the processors user manual to verify which sfr register bits can be bit addressed.
www.hitex.co.uk
page 57 of 190
6.2 Interrupts
Interrupts play an important part in most 8051 applications. There are several factors to be taken into account when servicing an interrupt: (i) The correct vector must be generated so that the routine may be called. C51 does this automatically. (ii) The local variables in the service routine must not be shared with locals in the background loop code: the L51 linker will try to re-use locations so that the same byte of RAM will have different significance depending on which function is currently being executed. This is essential to make best use of the limited internal memory. Obviously this relies on functions being executed only sequentially. Unexpected interrupts cannot therefore use the same RAM.
Firstly, the argument of the interrupt statement, 1 causes a vector to be generated at (8*n+3), where n is the argument of the interrupt declaration. Here a LJMP timer0_int will be placed at location 0BH in the code memory. Any local variables declared in the routine are not overlaid by the linker to prevent the overwriting of background variables. Logically, with an interrupt routine, parameters cannot be passed to it or returned. When the interrupt occurs, compiler-inserted code is run which pushes the accumulator, B,DPTR and the PSW (program status word) onto the stack. Finally, on exiting the interrupt routine, the items previously stored on the stack are restored and the closing } causes a RETI to be used rather than a normal RET.
www.hitex.co.uk
page 58 of 190
Before C51 v3.40 the interrupt vector generation had to be disabled and assembler jumps had to be inserted. However now the INTVECTOR control has been introduced to allow the interrupt vector area to be based at any address. In most cases the vector area will start at 0x8000 so that the familar 8 * n + 3 formula outlined in section 5.2.1 effectively becomes:
8 * n + 3 + INTVECTOR
To use this:
#pragma INTVECTOR(0x8000) /* Set vector area start to 0x8000 */
This produces an LJMP timer0_int at address C:0x800B. The redirection by the monitor from C:0x000B will now work correctly.
www.hitex.co.uk
page 59 of 190
www.hitex.co.uk
page 60 of 190
7 Pointers In C51
Whilst pointers can be used just as in PC-based C, there are several important extensions to the way they are used in C51. These are mainly aimed at getting more efficient code.
; Put off-chip address to be indirectly addressed in R0 ; Put off-chip address to be indirectly addressed in DPTR
addressed in
In each case the data is held in a memory location indicated by the value in registers to the right of the @.
Note the asterisk prefix, indicating that the data held in this variable is an address rather than a piece of data that might be used in a calculation etc.. In all cases in the assembler example two distinct operations are required: (i) Place address to be indirectly addressed in a register. (ii) Use the appropriate indirect addressing instruction to access data held at chosen address. Fortunately in C the same procedure is necessary, although the indirect register must be explicitly defined, whereas in assembler the register exists in hardware.
www.hitex.co.uk
page 61 of 190
/* 1 - Define a variable which will hold an address */ unsigned char *pointer ; /* 2 - Load pointer variable with address to be accessed*/ /*indirectly */ pointer = &c_variable ; /* 3 - Put data 0xff indirectly into c variable via*/ /*pointer */ *pointer = 0xff ;
Taking each operation in turn... 1. Reserve RAM to hold pointer. In practice the compiler attaches a symbolic name to a RAM location, just as with a normal variable. 2. Load reserved RAM with address to be accessed, equivalent to MOV R0,#40. In English this C statement means: take the address of c_variable and put it into the reserved RAM, i.e, the pointer In this case the pointers RAM corresponds to R0 and the & equates loosely to the assembler #. 3. Move the data indirectly into pointed-at C variable, as per the assembler MOV A,@R0. The ability to access data either directly, x = y, or indirectly, x = *y_ptr, is extremely useful. Here is C example:
/* Demonstration Of Using A Pointer */ unsigned char c_variable ; yet!) main() { c_variable = 0xff ; ptr = &c_variable ; *ptr = 0xff ; } // 3 - Set variable equal to 0xff directly // 4 - Force pointer to point at c_variable at run time // 5 - Move 0xff into c_variable indirectly // 1 - Declare a c variable unsigned char *ptr ; // 2 - Declare a pointer (not pointing at anything
Note: Line 4 causes pointer to point at variable. An alternative way of doing this is at compile time thus:
/* Demonstration Of Using A Pointer */ unsigned char c_variable; unsigned char *ptr = &c_variable; //1-Declare a c variable //2-Declare a pointer, intialised to pointing at //c_variable during compilation
// 3 - Set variable equal to 0xff directly // 5 - Move 0xff into c_variable ndirectly
Pointers with their asterisk prefix can be used exactly as per normal data types. statement:
The
www.hitex.co.uk
page 62 of 190
x = y + 3 ;
or:
x = y * 25 ; *x_ptr = *y_ptr * 25 ;
means set the value of the pointed-at address to value var, whereas
ptr = &var ;
means make ptr point at var by putting the address of (&) in ptr, but do not move any data out of var itself. Thus the rule is to initialise a pointer,
ptr = &var ;
However if the address to be pointed at is only known at run time, an alternative approach is necessary. Simply, an uncommitted pointer is declared and then forced to point at the required address thus:
Unsigned char *abs_ptr ; // Declare uncommitted pointer // Initialise pointer to 0x8000 // Write 0xff to 0x8000 // Make pointer point at next location in RAM
Please see sections 6.8 and 6.9 for further details on C51 spaced and generic pointers.
www.hitex.co.uk
page 63 of 190
yield four memory locations, two allocated to a and two to b. In other programming languages it is possible to group similar types together in arrays. In basic an array is created by DIM a(10). Likewise C incorporates arrays, declared by:
unsigned char a[10] ;
This has the effect of generating ten sequential locations, starting at the address of a. As there is nothing to the right of the declaration, no initial values are inserted into the array. It therefore contains zero data and serves only to reserve ten contiguous bytes.
In C there is no real distinction between strings and arrays as a C array is just a series of sequential bytes occupied either by a string or a series of numbers. In fact the realms of pointers and arrays overlap with strings by virtue of :
char test_array = { HELLO! } ; char *string_ptr = { HELLO! } ;
Case 1 creates a sequence of bytes containing the ASCII equivalent of HELLO!. Likewise the second case allocates the same sequence of bytes but in addition creates a separate pointer called *string_ptr to it. Notice that the unsigned char used previously has become char, literally an ASCII character.
www.hitex.co.uk
page 64 of 190
or;
char arr_ptr = &test_array[0] ; // Put address of first // element of array into // pointer
This again shows the partial interchangeability of pointers and arrays. In English, the first means transfer address of test_array into arr_ptr. Stating an array name in this context causes the array to be treated as a pointer to the first location of the array. Hence no address of (&) or * to be seen. The second case reads as get the address of the first element of the array name and put it into arr_ptr. No implied pointer conversion is employed, just the return of the address of the array base. The new pointer *arr_ptr now exactly corresponds to *string_ptr, except that the physical HELLO! they point at is at a different address.
The variable array_index shows the offset of the character to be fetched (and then stored) from the starts of the arrays.
As has been indicated, pointers and arrays are closely related. Indeed the above program could be re-written thus:
/* Copy The String HELLO! Into An Empty Array */ char *string_ptr = { HELLO! } ; unsigned char dest_array[7] ; unsigned char array_index ;
www.hitex.co.uk
page 65 of 190
unsigned char array_index = 0 ; while(array_index < 7) { // Check for end of array // Move character-by-character into
The point to note is that by removing the * on string_ptr and appending a [ ] pair, this pointer has suddenly become an array! However in this case there is an alternative way of scanning along the HELLO! string, using the *ptr++ convention:
array_index = 0 ; while(array_index < 7) { // Check for end of array dest_array[array_index] = *string_ptr++ ; // Move character-by-character into destination array. array_index++ ; }
This is an example of C being somewhat inconsistent; this *ptr++ statement does not mean increment the thing being pointed at but rather, increment the pointer itself, so causing it to point at the next sequential address. Thus in the example the character is obtained and then the pointer moved along to point at the next higher address in memory.
www.hitex.co.uk
page 66 of 190
7.4 Structures
Structures are perhaps what makes C such a powerful language for creating very complex programs with huge amounts of data. They are basically a way of grouping together related data items under a single symbolic name.
Where N is the number of the sensor type. A structure is a neat way of condensing this type is related and repeating data. In fact the information needed to describe a sensor can be reduced to a generalised:
unsigned unsigned unsigned unsigned unsigned char char char char char gain ; offset ; temp_coeff ; span ; amp_gain ;
The concept of a structure is based on this idea of generalised template for related data. In this case, a structure template (or component list) describing any of the manufacturer's sensors would be declared:
www.hitex.co.uk
page 67 of 190
This does not physically do anything to memory. At this stage it merely creates a template which can now be used to put real data into memory.
This reads as use the template sensor_desc to layout an area of memory named sensor_database, reflecting the mix of data types stated in the template. Thus a group of 5 unsigned chars will be created in the form of a structure. The individual elements of the structure can now be accessed as:
sensor_database.gain = 0x30 ; sensor_database.offset = 0x50 ; sensor_database.temp_coeff = 0x60 ; sensor_database.span = 0xC4 ; sensor_database.amp_gain = 0x21 ;
This creates four identical structures in memory, each with an internal layout determined by the structure template. Accessing this array is performed simply by appending an array index to the structure name:
/*Operate On Elements In First Structure Describing */ /*Sensor 0 */ sensor_database[0].gain = 0x30 ; sensor_database[0].offset = 0x50 ; sensor_database[0].temp_coeff = 0x60 ; sensor_database[0].span = 0xC4 ; sensor_database[0].amp_gain = 0x21 ; /* Operate On Elements In First Structure Describing */ /*Sensor 1 */ sensor_database[1].gain = 0x32 ; sensor_database[1].offset = 0x56 ;
and so on...
www.hitex.co.uk
page 68 of 190
so that here the structure is created in memory and pre-loaded with values. The array case follows a similar form:
struct sensor_desc sensor_database[4] = {{0x30,0x50,0x60, 0xC4, 0x21 }, { 0x32,0x56,0x56,0xC5,0x28 ; }} ;
There are two ways of doing this. The more common method now used is the "_at_" keyword. This was introduced in version C51 3.4
struct RTC xdata RTC_chip _at_ 0x200; // Create xdata structure at X:0x0200
The AT keyword can be used to place data in any memory space. There is more information on the _at_ keyword in section 8.7 The other method is uses the linker. A trick using the linker is required here so the structure creation must be placed in a dedicated module. This modules XDATA segement, containing the RTC structure, is then fixed at the required address at link time. This can be used to place not only structures but modules containing anything else at a fixed point. Using the absolute structure could be:
/* Structure located at base of RTC Chip */ MAIN.C Module extern xdata struct RTC_chip ; /* Other XDATA Objects */ xdata unsigned char time_secs, time_mins ; void main(void) { time_secs = RTC_chip.seconds ; time_mins = RTC_chip.minutes;
www.hitex.co.uk
page 69 of 190
Linker Input File To Locate RTC_chip structure over real RTC Registers is:
BL51 main.obj,rtcbytes.obj XDATA(?XD?RTCBYTES(0h))
NOTE: Older compilers may still use L51 and the newer (V6 and up) PK51 user may use LX51 instread of BL51 See section 7.6 for further examples of this placement method.
Note that the * which normally indicates a pointer has been replaced by appending -> to the pointer name. Thus *name and name-> are equivalent.
Advanced Note: Using a structure pointer will cause the called function to operate directly on the structure rather than on a copy made during the parameter passing process.
www.hitex.co.uk
page 70 of 190
// Move structure // pointer to address //of real time clock at // 0x8000 in xdata
// Operate on elements
This general technique can be used in any situation where a pointer-addressed structure needs to be placed over a specific IO device. However it is the users responsibility to make sure that the address given is not likely to be allocated by the linker as general variable RAM! To summarize, the procedure is: (i) Define template (ii) Declare structure pointer as normal (iii) At run time, force pointer to required absolute address in the normal way.
7.5 Unions
A union is similar in concept to a structure except that rather than creating sequential locations to represent each of the items in the template, it places each item at the same address. Thus a union of 4 bytes only occupies a single byte. A union may consist of a combination of longs, char and ints all based at the same physical address. The the number of bytes of RAM used by a union is simply determined by the size of the largest element, so:
www.hitex.co.uk
page 71 of 190
requires 4 bytes, this being the size of a long. The physical location of each element is:
addr 0 +1 +2 +3 x byte y high byte a[0] y low byte a[1] a[2] a[3] z z z z highest byte byte byte lowest byte
Non-8051 programmers should see the section on byte ordering in the 8051 if they find the idea of the MSB being at the low address odd!
In embedded C the commonest use of a union is to allow fast access to individual bytes of longs or ints. These might be 16 or 32 bit real time counters, as in this example: /* Declare Union */ union clock {long real_time_count ; // Reserve four byte int real_time_words[2] ; // Reserve four bytes as // int array char real_time_bytes[4] ; // Reserve four bytes as // char array } ; /* Real Time Interrupt */ void timer0_int(void) interrupt 1 using 1 { clock.real_time_count++ ; // Increment clock
if(clock.real_time_words[1] == 0x8000) { // Check // lower word only for value /* Do something! */ } if(clock.real_time_bytes[3] == 0x80) { // Check most // significant byte only for value /* Do something! */ } }
www.hitex.co.uk
page 72 of 190
xdata char buffer[10] ; code char message[] = { HELLO } ; void main(void) { char *s ; char *d ; s = message ; d = buffer ; while(*s != \0) { *d++ = *s++ ; } }
Yields:
RSEG buffer: ?XD?T1 DS 10 RSEG ?CO?T1 message: DB H ,E ,L ,L ,O ,000H ; ; ; xdata char buffer[10] ; ; code char message[] = { HELLO } ; ; ; void main(void) { RSEG ?PR?main?T1 USING 0 main: ; SOURCE LINE # 6 ; ; char *s ; ; char *d ; ; ; s = message ; ; SOURCE LINE # 11 MOV s?02,#05H MOV s?02+01H,#HIGH message MOV s?02+02H,#LOW message ; d = buffer ; ; SOURCE LINE # 12 MOV d?02,#02H MOV d?02+01H,#HIGH buffer MOV d?02+02H,#LOW buffer ?C0001: ; ; while(*s != \0) { ; SOURCE LINE # 14 MOV R3,s?02 MOV R2,s?02+01H MOV R1,s?02+02H LCALL ?C_CLDPTR JZ ?C0003 ; *d++ = *s++ ; ; SOURCE LINE # 15 INC s?02+02H MOV A,s?02+02H JNZ ?C0004 INC s?02+01H ?C0004: DEC A MOV R1,A LCALL ?C_CLDPTR MOV R7,A MOV R3,d?02 INC d?02+02H MOV A,d?02+02H MOV R2,d?02+01H JNZ ?C0005 INC d?02+01H
www.hitex.co.uk
page 73 of 190
?C0005: DEC MOV MOV LCALL } SJMP } A R1,A A,R7 ?C_CSTPTR ; SOURCE LINE # 16 ?C0001 ; SOURCE LINE # 17 ?C0003: RET ; END OF main END ;
As can be seen, the pointers *s and *d are composed of three bytes, not two as might be expected. In making *s point at the message in the code space an 05 is loaded into s ahead of the actual address to be pointed at. In the case of *d 02 is loaded. These additional bytes are how C51 knows which assembler addressing mode to use. The library function C_CLDPTR checks the value of the first byte and loads the data, using the addressing instructions appropriate to the memory space being used. This means that every access via a generic pointer requires this library function to be called. The memory space codes used by C51 are:
CODE XDATA PDATA DATA IDATA 05 02 03 05 01
which gives a pointer solely into the CODE space. Note that in both cases the pointers themselves are located in the memory space given by the current memory model. Thus a pointer to xdata which is to be itself located in PDATA would be declared thus:
pdata char xdata *ext_ptr ; | | location | of pointer | Memory space pointed into by pointer
www.hitex.co.uk
page 74 of 190
In this example strings are always copied from the CODE area into an XDATA buffer. By customising the library function strcpy() to use a CODE source pointer and a XDATA destination pointer, the runtime for the string copy was reduced by 50%. The new strcpy has been named strcpy_x_c(). The function prototype is:
extern char xdata *strcpy(char xdata*,char code *) ;
Notice that no library functions are used to determine which memory spaces are intended. The function prototype tells C51 only to look in code for the string and xdata for the RAM buffer.
www.hitex.co.uk
page 75 of 190
www.hitex.co.uk
page 76 of 190
To use it then,
port8_ddi = 0xFF ; input_val = port8_data ;
www.hitex.co.uk
page 77 of 190
Note that the address 8000H corresponds to 4000H words, hence the " 0x24000L ". Here are some examples with the code produced:
#define XBYTE ((unsigned char volatile *) 0x20000L) #define XWORD ((unsigned int volatile *) 0x20000L) main() { char x ; int y ; x = XBYTE[0x8000] 0000 0003 0004 0005 908000 E0 FF 8F00 MOV MOVX MOV MOV ; DPTR,#08000H A,@DPTR R7,A x,R7
y = XWORD[0x8000/sizeof(int)] ; } 0007 908000 MOV DPTR,#08000H 000A E0 MOVX A,@DPTR 000B FE MOV R6,A 000C A3 INC DPTR 000D E0 MOVX A,@DPTR 000E FF MOV R7,A 000F 8E00 R MOV y,R6 0011 8F00 R MOV y+01H,R7 } 0013 ?C0001: 0013 22 RET
However the address indicated by word_reg is fixed and can only be defined at compile time, as the contents of the square brackets may only be a constant. Any alteration to the indicated address is not possible with these macro-based methods. This approach is therefore best suited to addressing locations that are fixed in hardware and unlikely to change at run time. Note the use of the volatile storage class modifier. This is essential to prevent the optimiser removing data reads from external ports. See section 7.4 for more details. Note: the header file absacc.h must be included at the top of the source file as shown above. This contains the prototype for the XBYTE macro. (see page 9-15 in the C51 manual)
www.hitex.co.uk
page 78 of 190
Probably the simplest way of setting up such a pointer is to let the C_INIT program set the pointer to a location. However the initial address must be known at compile time. If the pointer is to be altered at run time, just equate it (without the * at run time) to the new address. Note: this automatic initialisation was not supported on earlier versions of C51. Simply do:
/* Spaced pointer */ xdata char xdata *a_ptr = 0x8000 ; /* Generic Pointer */ xdata char *a_ptr = 0x028000L ;
Here the pointer is setup to point at xdata address 0x8000. Note that the spaced *a_ptr can only point at xdata locations as a result of the second xdata used in its declaration. In the generic *a_ptr case, the 02 tells C51 that an xdata address is intended. An example might be:
6 7 8 9 11 13 0000 0003 0004 0006 0007 000A 000B 000D 15 16 17 000E 000F 0010 0011 0012 0014 0016 0017 17 0019 22 xdata char xdata *ptr = 0x8000 ;
main() { char x ; ptr += 0xf0 ; MOV MOVX ADD MOVX MOV MOVX ADDC MOVX x = *ptr ; } MOVX MOV INC MOVX MOV MOV MOVX MOV } RET A,@DPTR R6,A DPTR A,@DPTR DPL,A DPH,R6 A,@DPTR x,A DPTR,#ptr+01H A,@DPTR A,#0F0H @DPTR,A DPTR,#ptr A,@DPTR A,#00H @DPTR,A
www.hitex.co.uk
page 79 of 190
An alternative is to declare a pointer to the xdata space and simply equate it to a variable.
Here is an example: char xdata *ptr ; /* This is a spaced pointer!!! */ main(){ start_address = 0x8000 ; /*Variable containing address*/ /*to be pointed to */ start_address,#080H start_address+01H,#00H
R R
MOV MOV
ptr = start_address ; 000C 000E 0010 0012 0014 AE00 AF00 8E00 8F00 R MOV R MOV R MOV R MOV ?C0001: R6,start_address R7,start_address+01H ptr,R6 ptr+01H,R7
while(1) { x = *ptr++ ; 0014 0016 0018 001A 001C 001E 001E 001F 0020 0022 0024 0025 0026 } 0028 002A } 002A 002A 0500 E500 AE00 7002 0500 14 FF 8F82 8E83 E0 FF 8F00 80EA R R R INC MOV MOV JNZ R INC ?C0004: DEC MOV MOV MOV MOVX MOV MOV ptr+01H A,ptr+01H R6,ptr ?C0004 ptr A R7,A DPL,R7 DPH,R6 A,@DPTR R7,A x,R7 ?C0001
22
A variation of this is to declare a pointer to zero and use a variable as an offset thus:
www.hitex.co.uk
page 80 of 190
char xdata *ptr ; main() { unsigned int i ; unsigned char x ; ptr = (char*) 0x0000 ; for(i = 0 ; i < 0x40 ; i++) { x = ptr[i] ; } }
This results in rather more code, as an addition to the pointer must be performed within each loop.
-> (1)
-> (2)
y = array[time] ;
Here the value retrieved from the array is related to the value of *milliseconds, a register in an external RTC. If this is compiled it will not work. Why? Well the compilers optimiser shoots itself in the foot by assuming that, because no WRITE occurred between (1) and (2), *millisec cannot have changed. Hence all the code generated to make the second access to the register is optimised out and so y == x! The solution is declare *milliseconds as volatile thus:
unsigned int volatile xdata *milliseconds = 0x8000 ;
Now the optimiser will not try to remove subsequent accesses to the register.
www.hitex.co.uk
page 81 of 190
/*** Module 1 ***/ /* This module contains only data declarations! */ xdata unsigned char array[30] ; /* End Module 1 */ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ /*** Module 2 ***/ /* This module contains the executable statements */ extern xdata unsigned char array[10] ; main() { unsigned char i ; i = array[i] ; }
the linker will make the XDATA segment in Module 1 (indicated by ?XD?module1) start at 8000H, regardless of other xdata declarations elsewhere. Thus the array starts at 8000H and is 10 bytes (+ null terminator) long. This approach lacks the flexibility of the above methods but has the advantage of making the linker reserve space in the XDATA space. Similar control can be exercised over the address of segments in other memory spaces. C51 uses the following convention for segment names:
CODE CODE BIT DATA XDATA PDATA ?PR?functionname?module_name ?CO?functionname?module_name ?BI?functionname?module_name ?DT?functionname?module_name ?XD?functionname?module_name ?PD?functionname?module_name (executable code) (lookup tables etc.)
Thus the parameter receiving area of a LARGE model function test() in module MOD1.C would be:
?XD?TEST?MOD1,
And so on. A knowledge of this is useful for assembler interfacing to C51 programs. See section 14.
www.hitex.co.uk
page 82 of 190
MAIN.C Module
extern xdata struct { unsigned char seconds ; unsigned char minutes ; unsigned char hours ; unsigned char days ; } RTC_chip ;
/* Other XDATA Objects */ xdata unsigned char time_secs, time_mins ; void main(void) { time_secs = RTC_chip.seconds ; time_mins = RTC_chip.minutes ; }
RTCBYTES.C Module
xdata struct { unsigned unsigned unsigned unsigned char char char char seconds minutes hours days ; ; ; ; } RTC_chip ;
Linker Input File To Locate RTC_chip structure over real RTC Registers is:
l51 main.obj,rtcbytes.obj XDATA(?XD?RTCBYTES(0h))
www.hitex.co.uk
page 83 of 190
object to be included in the original declaration. In C51 v4.xx, the new_AT_control now exists.
The alternative _at_ control forces C51 to put data objects at an address given in the source file:
/** Fix Real Time Clock Registers Over Memory-Mapped Device **/ /** Fix each item individually **/ unsigned char xdata RTC_secs _at_ 0xfa00 ; unsigned char xdata RTC_mins _at_ 0xfa01 ; unsigned char xdata RTC_hours _at_ 0xfa02 ; main() { } RTC_mins = 1 ;
www.hitex.co.uk
page 84 of 190
There are controls provided in the linker which determine where the various memory types should be placed. For instance, if an external RAM chip starts at 4000H and the code memory (Eprom) is at 8000H, the linker must be given:
www.hitex.co.uk
page 85 of 190
This will move all the variables in external RAM to 4000H and above and all the executable code to 8000H. Even more control can be exercised over where the linker places code and data segments. By further specifying the module and segment names, specific variables can be directed to particular addresses - see 2.1.8 for an example.
?C_STARTUP:
RSEG ?STACK DS 1 EXTRN CODE (?C_START) PUBLIC ?C_STARTUP CSEG AT 0 LJMP STARTUP1 RSEG ?C_C51STARTUP
STARTUP1: ENDIF MOV LJMP SP,#?STACK-1 ; Put address of STACK location into SP ?C_START ; Goto initialised data section
www.hitex.co.uk
page 86 of 190
As has been pointed out, idata variables are rather harder to get at because of the loading of an Ri register first. However there is one type of variable which is ideally suited to this - the array or pointer-addressed variable. The MOV A,@Ri is ideal for array access as the Ri simply contains the array index. Similarly a variable accessed by a pointer is catered for, as the @Ri is effectively a pointer. This is especially significant now that version 3.xx supports memory space specific pointers. The STACK is now simply moved above these new idata objects. To summarise, with the 8052 if you are hitting the 128 byte ceiling of the directly addressable space, the moving of arrays and pointer addressable objects can free-up large amounts of valuable directly addressable RAM very easily.
The possibility then arises for these individual areas to be combined into a single block, capable of supplying enough RAM for the needs of the single biggest function. In C51 this process is performed by the linkers OVERLAY function. In simple terms, this examines all functions and generates a special data segment called DATA_GROUP, able to contain all the local variables and parameters of all C51 functions. As an example, if most functions require only 4 byes of local data but one particular one needs 10, the DATA_GROUP will be 10 bytes long. Using the registers as a location for temporary data means that a large number of locals and parameters can be accommodated without recourse to the DATA_GROUP - this is why it may appear smaller than you expect. The overlayer works on the basis that if function 1 calls function 2, then their respective local data areas may not be overlaid, as both must be active at the same time. A third function 3, which is also called by 1, may have its locals overlaid with 2, as the two cannot be running at the same time.
main | funcA func2 - func3 - func4 |
www.hitex.co.uk
page 87 of 190
As funcA refers to func2 and func2 refers to func3 etc., A,2,3 and 4 cannot have their locals overlaid, as they all form part of the same path. Likewise, as funcB refers to func5 and func6 refers to func7 etc., B,6,7 and 4 cannot have their locals overlaid. However the groups 2,3,4; 5,6,7 and 8,9,10 may have their locals overlaid as they are never active together, being attached to sequential branches of the main program flow. This is the basis of the overlay strategy. However a complication arises with interrupt functions. Since these can occur at any time, they would overwrite the local data currently generated by whichever background (or lower priority interrupt) function was running, were they also to use the DATA_GROUP. To cope with this, C51 identifies the interrupt functions and called functions and allocates them individual local data areas.
www.hitex.co.uk
page 88 of 190
The result is that the locals of func4/5 will corrupt the locals used in execute. This is clearly VERY dangerous, especially as the overwriting may not be immediately obvious - it may only appear under abnormal operating conditions once the code has been delivered.
#include <reg517.h> /********************************************************* *** OVERLAY HAZARD 1 - Indirectly called functions *** **********************************************************/ char func1(void) { // Function to be called directly char x, y, arr[10] ; for(x = 0 ; x < 10 ; x++) { arr[x] = x ; } return(x) ; } char func2(void) { (.... C Code ...) } char func3(void) { (.... C Code ...) return(x) ; } char func4(void) { // Function to be called directly
// Local variables
for(x4 = 0 ; x4 < 10 ; x4++) { arr4[x4] = x4 ; } return(x4) ; } char func5(void) { // Function to be called indirectly // Local variables
for(x5 = 0 ; x5 < 10 ; x5++) { arr5[x5] = x5 ; } return(x5) ; } /*** Function which does the calling ***/ char execute(fptr) //Receive pointer to function to be used char (*fptr)() ; { char tex ; // Local variables for execute function char arrex[10] ; for(tex = 0 ; tex < 10 ; tex++) { arrex[tex] = (*fptr)() ; } return(tex) ; } /*** Declaration of general function pointer ***/
www.hitex.co.uk
page 89 of 190
char (code *fp[3])(void) ; /*** Main Calling Function ***/ void main(void) { char am ; fp[0] = func1 ; fp[1] = func2 ; fp[2] = func3 ; am = fp[0] ; am = fp[1] ; am = fp[2] ; if(P1) { // Point array elements at functions
// Execute functions
am = execute(func4) ; // Tell execute function which to run } else { am = execute(func5) ; // Tell execute function which to run } }
000FH
000BH
www.hitex.co.uk
page 90 of 190
y arr4 y5 arr5
Incidentally, the overlay map shows which functions referred to which other functions. By checking what L51 has found against what you expect, overlay hazards may be spotted.
Note: The tilde sign ; means: Ignore the reference to func4/5 from main The ! means: Manually generate a reference between intermediate function execute and func4/5 to prevent overlaying of local variables within these functions. Please make sure you understand exactly how this works!!! The new linker output is:
MS-DOS MCS-51 LINKER / LOCATER L51 V2.8, INVOKED BY:
L51 MAIN.OBJ TO EXEC.ABS OVERLAY(MAIN ;(FUNC4, FUNC5), _EXECUTE ! (FUNC4, FUNC5)) OVERLAY MAP OF MODULE: EXEC.ABS (MAIN) SEGMENT +> CALLED SEGMENT ?C_C51STARTUP +> ?PR?MAIN?MAIN ?PR?MAIN?MAIN +> ?PR?FUNC1?MAIN +> ?PR?FUNC2?MAIN +> ?PR?FUNC3?MAIN +> ?PR?_EXECUTE?MAIN ?PR?FUNC1?MAIN ?PR?FUNC2?MAIN ?PR?FUNC3?MAIN ?PR?_EXECUTE?MAIN +> ?C_LIB_CODE D:0028H D:0029H SYMBOL SYMBOL tex arrex 0024H 0001H DATA-GROUP LENGTH
START
www.hitex.co.uk
page 91 of 190
SEGMENT: ?PR?FUNC4?MAIN *** WARNING 16: UNCALLED SEGMENT,IGNORED FOR OVERLAY PROCESS SEGMENT: ?PR?FUNC5?MAIN
Note: The WARNING 16s show that func4/5 have been removed from the overlay process to remove the hazard. See section 8.4.2.6 on the UNCALLED SEGMENT, IGNORED FOR OVERLAY PROCESS warning.
(Non-hazardous)
Here two functions are called an array of function pointers. The array jump_table exists in a segment called ?CO?MAIN1, i.e. the constant area assigned to module main. The problem arises that the two message string arguments to the printf s are also sited here. This leads to a recursive definition of the function start addresses in the jump table. While this is not in itself dangerous, it prevents the real function references from being established and hence the overlaying process is inhibited.
****************************************************************************; *<<<<<<<<<<<<<Recursive Call To Segment Error>>>>>>>>>>>>>>* ****************************************************************************; #include <stdio.h> #include <reg517.h> void func1(void) { unsigned char i1 ; for(i1 = 0 ; i1 < 10 ; i1++) { printf(THIS IS FUNCTION 1\n) ; } } void func2(void) { unsigned char i2 ; for(i2 = 0 ; i2 < 10 ; i2++) { printf(THIS IS FUNCTION 2\n) ; } } code void(*jump_table[])()={func1,func2}; //Jump table to functions, // table stored in ?CO?MAIN1 // segment. /*** Calling Function ***/ // String stored in ?CO?MAIN1 segment // String stored in ?CO?MAIN1 segment
main() { (*jump_table[P1 & 0x01])() ; // Call function via jump table in ?CO?MAIN1
www.hitex.co.uk
page 92 of 190
Note: No reference exists between main and func1/2 so the overlay process cannot occur, resulting in wasted RAM.
OVERLAY MAP OF MODULE: SEGMENT +> CALLED SEGMENT ?C_C51STARTUP +> ?PR?MAIN?MAIN1 ?PR?MAIN?MAIN1 +> ?CO?MAIN1 +> ?C_LIB_CODE ?CO?MAIN1 +> ?PR?FUNC1?MAIN1 +> ?PR?FUNC2?MAIN1 ?PR?FUNC1?MAIN1 +> ?PR?PRINTF?PRINTF MCS-51 LINKER / LOCATER DATE 04/08/92 PAGE L51 V2.8 2 0001H.1 0009H 0014H 0008H 0001H MAIN1 (MAIN1) BIT-GROUP START LENGTH DATA-GROUP START LENGTH
0008H
0001H
*** WARNING 13: RECURSIVE CALL TO SEGMENT SEGMENT: ?CO?MAIN1 CALLER: ?PR?FUNC1?MAIN1 *** WARNING 13: RECURSIVE CALL TO SEGMENT SEGMENT: ?CO?MAIN1 CALLER: ?PR?FUNC2?MAIN1
This deletes the reference to func1 & 2 from the ?CO?MAIN1 segment and inserts the true reference from main to func1 & func2. The linker output is now thus:
OVERLAY MAP OF MODULE: SEGMENT +> CALLED SEGMENT ?C_C51STARTUP +> ?PR?MAIN?MAIN1 ?PR?MAIN?MAIN1 +> ?CO?MAIN1 +> ?C_LIB_CODE +> ?PR?FUNC1?MAIN1 +> ?PR?FUNC2?MAIN1 MAIN1.ABS (MAIN1) BIT-GROUP START LENGTH DATA-GROUP START LENGTH
www.hitex.co.uk
page 93 of 190
?PR?FUNC1?MAIN1 +> ?CO?MAIN1 +> ?PR?PRINTF?PRINTF ?PR?PRINTF?PRINTF 0020H.0 +> ?C_LIB_CODE +> ?PR?PUTCHAR?PUTCHAR ?PR?FUNC2?MAIN1 +> ?CO?MAIN1 +> ?PR?PRINTF?PRINTF 0001H.1 0009H 0014H
0008H
0001H
0008H
0001H
(Hazardous)
This warning generally occurs when a function is called from both the background and an interrupt. This means that potentially the interrupt may call the function whilst it is still running, as a result of a background level call. The result could be the over-writing of the local data in the background. The fact that the offending function is also overlaid with other background functions makes the chances of failure very high. The simplest solution is to declare the function as REENTRANT so that the compiler will generate a local stack for parameters and variables. Thus on each call to the function, a new set of parameters and local variables are created without destroying any existing ones from the current call. Unfortunately this significantly increases the run time and code produced. Another possibility is to make a second and renamed version of the function, one for background use and one for interrupt. This is somewhat wasteful and presents a maintenance problem, as you now have effectively two versions of the same piece of code. In many cases the situation is not a problem, as the user may have ensured that the reentrant use could never occur, but is left with the linker warning. However this must be viewed as dangerous, particularly if more than one programmer is involved.
#include <stdio.h> #include <reg517.h> void func1(void) { unsigned char i1,a1[15] ; for(i1 = 0 ; i1 < 10 ; i1++) { a1[i1] = i1 ; } } void func2(void) { unsigned char i2,a2[15] ; for(i2 = 0 ; i2 < 10 ; i2++) {
www.hitex.co.uk
page 94 of 190
func1() ; } ^^^^^^^^^^^^^^^^^^^^^^^ End of Module This produces the linker map: OVERLAY MAP OF MODULE: SEGMENT +> CALLED SEGMENT ?PR?TIMER0_INT?MAIN2 +> ?PR?FUNC1?MAIN2 ?PR?FUNC1?MAIN2 ?C_C51STARTUP +> ?PR?MAIN?MAIN2 ?PR?MAIN?MAIN2 +> ?PR?FUNC1?MAIN2 +> ?PR?FUNC2?MAIN2 ?PR?FUNC2?MAIN2 D:0007H D:0017H D:0007H D:0017H SYMBOL SYMBOL SYMBOL SYMBOL 0017H i1 a1 i2 a2 000FH 0017H 000FH MAIN2 (MAIN2) DATA-GROUP START LENGTH
// Danger!
*** WARNING 15: MULTIPLE CALL TO SEGMENT SEGMENT: ?PR?FUNC1?MAIN2 CALLER1: ?PR?TIMER0_INT?MAIN2 CALLER2: ?C_C51STARTUP
to break connection between main and func1 and timer0_int and func1. OVERLAY MAP OF MODULE: MAIN2.ABS (MAIN2)
SEGMENT +> CALLED SEGMENT ?C_C51STARTUP +> ?PR?MAIN?MAIN2 ?PR?MAIN?MAIN2 +> ?PR?FUNC2?MAIN2 ?PR?FUNC2?MAIN2 0017H 000FH DATA-GROUP START LENGTH
*** WARNING 16: UNCALLED SEGMENT, IGNORED FOR OVERLAY PROCESS SEGMENT: ?PR?FUNC1?MAIN2
www.hitex.co.uk
page 95 of 190
This means that the safe overlaying of func1 with other background functions will not occur. Removing the link only with the interrupt would solve this:
main2.obj & to main2.abs & OVERLAY(timer0_int ~ func1)
Another route would be to disable all overlaying but this is likely to eat up large amounts of RAM very quickly and is thus a poor solution.
main2.obj & to main2.abs & NOOVERLAY
With the MULTIPLE CALL TO SEGMENT WARNING the only really safe solution is to declare func1 as REENTRANT, with the duplicate function a good second. The danger of using the OVERLAY command is that a less experienced programmer new to the system might not realise that the interrupt is restricted as to when it can call the function and hence system quality is degraded.
www.hitex.co.uk
page 96 of 190
main0() ; // Branch 0 } else { main1() ; // Branch 1 } } ^^^^^^^^^^^^^^^^^^^^^^^ End of Module /* Module that declares publics for branch 2 */ /* Publics for branch 2 */ unsigned char x2,y2 ; unsigned int z2 ; char a2[0x30] ; /* A variable which is accessible from both branches */ extern int common ; ^^^^^^^^^^^^^^^^^^^^^^^ End of Module
void main0(void) { unsigned char c0 ; /* Local - gets overlaid with c1 in*/ /*other branch */ x2 = 0x80 ; y2 = x2 ; c0 = y2 ; z2 = x2*y2 ; a2[2] = x2 ; common = z2 ; } ^^^^^^^^^^^^^^^^^^^^^^^ End of Module
/* Module that declares publics for branch 1 */ /* Publics for branch 1 */ unsigned char x1,y1 ; unsigned int z1 ; char a1[0x30] ; /* A variable which is accessible from both branches */ extern int common ; void main1(void) { char c1 ; x1 = 0x80 ; y1 = x1 ; c1 = y1 ; z1 = x1*y1 ; a1[2] = x1 ; common = z1 ; } ^^^^^^^^^^^^^^^^^^^^^^^ End of Module
www.hitex.co.uk
page 97 of 190
/* Module that declares variables that both */ /*branches can access */ int common ; /* A variable common to both branches */ ^^^^^^^^^^^^^^^^^^^^^^^ End of Module /* Linker Input */ l51 t.obj,t1.obj,t2.obj,com.obj to t.abs DATA(?DT?T1(20H),?DT?T2(20H))
The choice of 20H for the location places the combined segments just above the register banks. The main problem with this approach is that a DATA overlay warning is produced. This is not dangerous but is obviously undesirable.
www.hitex.co.uk
page 98 of 190
to use this:
test_char = counter ; if(sign_bit) { /* test_char is negative */ }
All of which is a lot faster than using bit masks and &'s! The important points are that the bdata tells C51 and L51 that this variable is to be placed in the bit-addressable RAM area and the sbit sign_bit = test_char ^ 7 tells C51 to assume that a bit called sign_bit will be located at position 7 in the test_char byte.
Byte Number: Bit Number: Byte Number: Bit Number: Byte Number: Bit Number: test_char 20H Start Of BDATA area 0,1,2,3,4,5,6,7< sign_bit 21H 8,9,10,11,12,13,14,15 22H 16,17,18,19,20,21,22,23,24.....
The situation with ints is somewhat more complicated. The problem is that the 8051 does not store things as you first expect. The same sign test for an int would require bit 7 to be tested. This is because the 8051 stores ints high byte at the lower address. Thus bit 7 is the highest bit of the higher byte and 15 is the highest bit of the lower.
Byte Number: test_int(high) Bit Number: 0,1,2,3,4,5,6,7 Byte Number: test_int+1(low) Bit Number: 8,9,10,11,12,13,14,15 Bit locations in an integer 20H
21H
www.hitex.co.uk
page 99 of 190
www.hitex.co.uk
Note: the compiler does not do this - the user must add the following code to overcome the problem:
#pragma MOD517 #include reg517.h long x,y,z ; func() { while(1) { x = y / z ; if(MDEF == 0) { break ; } } }
/* /* /* /*
32-bit calculation */ If corruption has */ occurred then repeat */ else exit loop */
3. Do not use floating point arithmetic, integer or long divides, printf, scanf etc., as they all use LCALLs. 4. A special 87C751 library package is available which will contain short call versions of the standard library routines.
www.hitex.co.uk
Code Sizes
47 bytes - C51 v3.20 49 bytes - C51 v3.40 (INTPROMOTE) 63 bytes - C51 v3.40 (NOINTPROMOTE)
Again this goes to show that C portability compromises efficiency in 8051 programs...
www.hitex.co.uk
11 Miscellaneous Points
11.1 Tying The C Program To The Restart Vector
This is achieved by the assembler file STARTUP.A51. This program simply places a LJMP STARTUP at location C:0000 (Lowest EPROM location). The startup routine just clears the internal RAM and sets up the stack pointer. Initialisation routines might also take place between LJMP MAIN and Main() if global variables that are created and initialised in your application, for example char x= 10; in this case startup .a51 is going to call init.a51 and then it is finally going to call main();.
LJMP main . . . . main() { }
void main(void) { RSEG ?PR?main?T USING 0 main: ; SOURCE LINE # 12 ; ; /* Use Normal Approach */
www.hitex.co.uk
; ;
; ;
if(test_flag == 1) { ; SOURCE JNB test_flag,?C0001 ; test_flag = 0 ; ; SOURCE CLR test_flag ; P1 = 0xff ; ; SOURCE MOV P1,#0FFH ; } ; SOURCE ?C0001: ; ; /* Use Intrinsic Function */ ; ; test_flag = 1 ; ; SOURCE SETB test_flag ; ; if(!_testbit_(test_flag)) { ; SOURCE JBC test_flag,?C0003 ; P1 = 0xff ; ; SOURCE MOV P1,#0FFH ; } ; SOURCE ; ; } ; SOURCE ?C0003: RET ; END OF main END
LINE # 16
LINE # 17
LINE # 18
LINE # 19
LINE # 21
LINE # 23
LINE # 24
LINE # 25
LINE # 27
www.hitex.co.uk
char xdata *out_buffx = { char xdata *in_buffx = { Hello } ; char idata *in_buffi = { Hello } ; char idata *out_buffi = { Hello } ; void main(void) { Inline_Strcpy(out_buffx,in_buffx)
// In line functions
www.hitex.co.uk
Inline_Strcpy(out_buffi,in_buffi) Inline_Strcpy(out_buffx,in_buffc) }
Another good example of how a macro with parameters can be used to aid source readability is in the optimisation feature in Appendix D. The interpolation calculation that originally formed a subroutine could easily be redefined as a macro with 5 parameters, realising a ram and run time saving at the expense of code size. Note that r, the fifth parameter, represents the return value which has to be passed to the macro so that it has somewhere to put the result!
#define interp_sub(x,y,n,d,r) y -= x ; \ if(!CY) { r = (unsigned char) (x +(unsigned char)(((unsigned int)(n * y))/d)) ;\ } else { r = (unsigned char) (x - (unsigned char)(((unsigned int)(n * -y))/d)) ; }
To summarise, parameter macros are a good way of telling C51 about a generalised series of operations whose memory spaces or input values change in programs where speed or RAM usage is critical.
www.hitex.co.uk
An alternative might have been to declare a variable to hold the return value in a separate module and to use the linker to fix that modules DATA segment address at 0x18. This method is more robust and code efficient but is considerably less flexible.
www.hitex.co.uk
/* Enable lower priority section attached to */ /* ADC interrupt */ IADC = 1 ; // Force ADCinterrupt EADC = 1 ; // Enable ADC interrupt } /* Lower priority section attached to ADC interrupt */ tdc_int_low_priority() interrupt 10 IADC = 0 ; // Prevent further calls EADC = 0 ; /* Low priority section which must be interruptable and */ /* guaranteed to follow high priority section above */ }
In the decade or so since the first edition and some 500 new variants later there is now the CC1010 from Chipcon that has the TRAP instruction Op code #A5h for break points and debugging.
www.hitex.co.uk
send_byte(tx_byte) ; char_received_fl = 0 ; } real_time_count = 0 ; while(real_time_count < 200) { ; } i = ((unsigned char (code*)(void)) 0xFFFD) () ; // Jump to absolute address. } ^^^^^^^^^^^^^^^^^^^^^^^ End of Module
; NAME ; ; Cause ; P4 ; CSEG ; MOV ; END SWITCH PC to roll-over at FFFFH to simulate reset DATA 0E8H AT 0FFFDH P4,#02Fh ;
There are other ways of doing this. For instance the code for the MAPCON module could be located at link time thus: CODE(SWITCH(0FFFDH)), so dispensing with the CSEG AT.
SOURCE LINE # 13
www.hitex.co.uk
so that the statement temp = FUEL_CONSTANT will assign the value 200 to temp. NOTE: the #define is purely a textual replacement and care must be taken to ensure no side effects. Unless the define is a single item eg #define MAX_TEMP 10 The text should be in perenthasis ( ) as in the case
Many safety critical and high integrity coding guides mandate that ALL defines shall use perenthasis. In the case of the example above without the parenthasis it could have many stange side effect. temp =
FUEL_CONSTANT == temp = 100* 2
In this case precedence gives (200 *2) + 10 but then I am sure you knew that. However if it had been :
#define BASE 50 #define FUEL_CONSTANT 100 + BASE
then
temp = miles * FUEL_CONSTANT
The answer would have been (miles * 100) + 50 and NOT miles * 150
www.hitex.co.uk
where isdigit() is a function that returns value 1 (true) if the test_byte is an ASCII character in the range 0 to 9. The declarations of the library functions are held in files with a .h extension - see the above code fragment. Examples are:
ctype.h, stdio.h, string.h etc..
These are included at the top of the module which uses a library function. Many common mathematical functions are available such as ln, log, exp, 10x, sin, cos, tan (and the hyperbolic equivalents). These all operate on floating point numbers and should therefore be used sparingly! The include file containing the mathematical function prototypes is math.h. Library files contain many discrete functions, each of which can be used by a C program. They are actually retrieved by the linker utility covered in section 8. These files are treated as libraries by virtue of their structure rather than their extension. The insertion or removal of functions from such a file is performed by a library manager called LIB51.
plus three additional files containing floating point routines as well as the integer variety.
www.hitex.co.uk
C51 library functions are registerbank independent. This means that library functions can be used freely without regard to the current REGISTERBANK() or USING status. This is a major advantage as it means that library functions can be used freely within interrupt routines and background functions without regard to the current register bank.
www.hitex.co.uk
www.hitex.co.uk
www.hitex.co.uk
A51 File:
ASM_FUNC: MOV A,#10 ; 8051 assembler instructions
Should there be parameters to be passed, C51 will place the first few parameters into registers. Exactly how it does this is outlined in section The complication arises when there are more parameters to be passed than can be fitted into registers. In this case the user must declare a memory area into which the extra parameters can be placed. Thus the assembler function must have a DATA segment defined that conforms to the naming conventions expected by C51. In the example below, the segment
?DT?_WRITE_EE_PAGE?WRITE_EE SEGMENT DATA OVERLAYABLE
does just that. The best advice is to write the C that calls the assembler and then compile with the SRC switch to produce an assemblable equivalent. Then look at what C51 does when it calls your as yet unwritten assembler function. If you stick to the parameter passing segment name generated by C51 you will have no problems. Example Of Assembler Function With Many Parameters C Calling Function Within the C program that calls this function the following lines must be added to the calling module/source file:
/* external reference to assembler routine */ extern unsigned char write_ee_page(char*,unsigned char,unsigned char) ;
www.hitex.co.uk
. . dummy() { unsigned char number, eeprom_page_buffer, ee_page_length ; char * current_ee_page ; number = write_ee_page (current_ee_page, eeprom_page_buffer, ee_page_length) ; } /* End dummy */
The assembler routine is: NAME EEPROM_WRITE ; PUBLIC PUBLIC PUBLIC _WRITE_EE_PAGE ; Essential! ?_WRITE_EE_PAGE?END_ADDRESS ; ?_WRITE_EE_PAGE?END_BUFFER ;
; P6 EQU 0FAH ; Port 6 has watchdog pin ; ;**************************************************************************** ; *<<<<<<<<< Declare CODE And DATA Segments For Assembler Routine >>>>>>>>>>>* ;****************************************************************************; ?PR?_WRITE_EE_PAGE?WRITE_EE SEGMENT CODE ?DT?_WRITE_EE_PAGE?WRITE_EE SEGMENT DATA OVERLAYABLE ; ; ;**************************************************************************** ; *<<<<<< Declare Memory Area In Internal RAM For Local Variables Etc. >>>>>>* ;**************************************************************************** ; RSEG ?DT?_WRITE_EE_PAGE?WRITE; ?_WRITE_EE_PAGE?END_ADDRESS: DS 2 ; ?_WRITE_EE_PAGE?END_BUFFER: DS 1 ; ; ; ;**************************************************************************** ; *<<<<<<<<<<<<<<< EEPROM Page Write Function >>>>>>>>>>>>>>* ;**************************************************************************** ; RSEG ?PR?_WRITE_EE_PAGE?WRITE ; ; _ WRITE_EE_PAGE: CLR EA MOV DPH,R6 ; Address of EEPROM in R7/R6 MOV DPL,R7 ; ; MOV A,R3 ; Length of buffer in R3 DEC A ; ADD A,R7 ; Calculate address of last MOV ?_WRITE_EE_PAGE?END_ADDRESS+01H,A ; byte in page in XDATA. CLR A ; ADDC A,R6 ; MOV ?_WRITE_EE_PAGE?END_ADDRESS,A ; ; MOV A,R5 ; Address of buffer in IDATA in R5 MOV R0,A ; ADD A,R3 ; MOV ?_WRITE_EE_PAGE?END_BUFFER,A ; ; LOOP: MOV A,@R0 ; MOVX @DPTR,A ; INC R0 ; INC DPTR ; MOV A,R0 ; CJNE A,?_WRITE_EE_PAGE?END_BUFFER,LOOP ; ; MOV DPH,?_WRITE_EE_PAGE?END_ADDRESS ; MOV DPL,?_WRITE_EE_PAGE?END_ADDRESS+01H ;
www.hitex.co.uk
DEC ; CHECK: XRL MOVX CLR SUBB JNZ SETB RET ; END ;
www.hitex.co.uk
www.hitex.co.uk
16.2
Always use unsigned variables where possible. The 8051 has no signed compares, multiplies etc., hence all sign management must be done by discrete 8051 instructions.
16.3
Try to avoid dividing anything but 8 bit numbers. There is only an 8 by 8 divide in the instruction set. 32 by 16 divides could be lengthy unless you are using an 80C537!
16.4
Try to avoid using bit structures. Until v2.30, C51 did not support these structures as defined by ANSI. Having queried this omission with Keil, the explanation was that the code produced would be very large and inefficient. Now that they have been added, this has proved to be right. An alternative solution is to declare bits individually, using the bit storage class, and pass them to a user-written function.
16.5
The ANSI standard says that the product of two 8- bit numbers is also an 8 bit number. This means that any unsigned chars which might have to be multiplied must actually be declared as unsigned ints if there is any possibility that they may produce even an intermediate result over 255. However it is very wasteful to use integer quantities in an 8051 if a char can do the job! The solution is to temporarily convert (cast) a char to an int. Here the numerator potentially could be 16 bits but the result always 8 bits. The (unsigned int) casts ensure that a 16 bit multiply is used by C51.
{ unsigned char z ; unsigned char x ; unsigned char y ; z = ((unsigned int) y * (unsigned int) x) >> 8 ; }
Here the two eight bit numbers x and y are multiplied and then divided by 256. The intermediate 16 bit (unsigned int) result is permissible because y and x have been loaded by the multiplier library routine as ints.
www.hitex.co.uk
16.6
Calculations which consist of integer operands but which always produce an 8 bit (char ) due to careful scaling result thus:
unsigned int x, y ; unsigned char z ; z = x*y/256 ;
will always work, as C51 will equate z to the upper byte (least significant) of the integer result. This is not machine-dependant as ANSI dictates what should be done. Also note that C51 will access the upper byte directly, thus saving code.
www.hitex.co.uk
17 Conclusion
The foregoing should give a fair idea how the C51 compiler can be used in real embedded program development. Its great advantage is that it removes the necessity of being an expert in 8051 assembler to produce effective programs. Really, for the 8051, C51 should be viewed as a universal low to medium level language, which both assembler and C programmers can move to very simply. Access to on and offchip peripherals is painless and the need for assembler device-drivers is removed. Well-constructed C programs will lend themselves to being re used and eventually you should be able to create your own libraries of functions and core modules. This is for me a strange conculsion as it effectively comes halfway through this paper. However that is the nature of embedded engineering. The end never is. So always constrtuct your programs well because they will probably have a life far longer than you ancicipate.
www.hitex.co.uk
www.hitex.co.uk
18 Appendix A
Constructing A Simple 8051 C Program. Please note this is a program from the original C51 Primer. In time it will be converted to C51 V7 and MISRA-C compliance. Often the most difficult stage in 8051 C programming is getting the first program to run! Even if you are not having to grapple with C as a new language, the business of dealing with special function registers, interrupts and memory-mapped peripherals can be a bit daunting. This simple program contains all the basic steps required to get an 8051 program to run. Like all the classic first programs, it prints hello world down the serial port which is assumed to be connected to a dumb terminal.
A First C51 Program /**************************************************************************** * Main Program - Simplest Version ****************************************************************************/ /* This program is entered from the reset vector. and prints hello world repeatedly */ /* Declare Memory Model */ .i.#pragma;#pragma SMALL // Set SMALL model (on-chip RAM only) // Include file contains function prototype for printf.
#include \C51P\INC\stdio.h /* Function Prototype */ void serial0_init_T1(void) ; /* Main Loop */ void main(void) { serial0_init_T1() ; /*** Loop Forever ***/ while(FOREVER) { printf(hello world) ; } }
/************************************************************************** This function initialises Serial Port 0 to run at 4800 Baud using the Timer 1 auto-reload mode with a 12MHz XTAL. **************************************************************************/ /* To get 9600 baud with timer1 requires an 11.059MHz crystal! */ void serial0_init_T1(void) { TH1 = 0x0f3 ; /* Timer 1 high byte (= reload value) SMOD = 0, F(Osc) = 12 MHz, and Timer 1 in mode 2, baudrate of 4800 Baud Timer 1 Interrupt is disabled after RESET */ ; /* Load Timer Mode Control Register Timer 1 under software control with TR1 as Timer in mode 2(= 8 bit, auto-reload) */
TMOD |= 0x20
www.hitex.co.uk
S0CON = 0x52
/* Serial connection in mode 1 (= 1 Start-,8 Data-, 1 stop bit)start enabled Transmitter empty, Receiver empty */ /* SMOD = 1 to double baud rate */ ; /* Timer 1 start */
This should be placed in a module, preferably called main.c and compiled with:
>C51 main.c
This produces a file, main.obj Next, link main.obj with the printf function, held in a C51S.LIB library, and fix the location of the program:
>L51 main.obj,\c51p\lib\c51s.lib to exec.abs
To yield an Intel OMF51 format file named exec.abs. If you are using an EPROM programmer, you will need an Intel HEX file. Use OHS51.EXE for this:
>OHS51 exec.abs
to give exec.hex an Intel HEX file. Basically this is all there is to producing a working C51 program! Some refinements might be to make sure that the C51LIB DOS environment variable has been set to indicate where the C51S.LIB is located. To do this, make sure that you have
SET C51LIB=\C51P\LIB
the long and untidy pathname for stdio.h can be eliminated. If C51 has been installed properly, this should have already been done.
www.hitex.co.uk
19 Appendix B
Driving The 8051 For Real Please note this is a program from the original C51 Primer. In time it will be converted to C51 V7 and MISRA-C compliance. The following example program does the following typical 8051 tasks: (i) (ii) (iii) (iv) (v) Read a port pin value Write a port pin value Generate a periodic timer interrupt Transmit data via the serial port Write to a memory-mapped port
It is suggested that to get started you steal sections from the following program! Although the Siemens 80C537 has been used as the basis for this, the approaches used are applicable to all 8051 variants. #include #include #include #include <stdio.h> <reg517.h> <math.h> <string.h> /* include /* /* /* include 80C517 include include standard io libs */ register set */ mathematical prototypes */ string handling functions */ */
/*
#pragma MOD517
2.
3. 4.
Frequency Measurement
- Input Capture CC0
5.
6.
7.
www.hitex.co.uk
/*** CCMx PWMS ***/ xdata float pwm_period = 42.5 ; // Initial period in us,variable located in XDATA.
xdata float pwm_duty_ratio = 50 ; // Initial ratio in % xdata unsigned int pwm_prescale = 0 ; /*** Analog Inputs ***/ xdata float analog_data[4]; xdata unsigned char rx_byte;
xdata unsigned char channel_0 = 0 ; xdata unsigned char channel_1 = 0 ; /*** Timer0 Overflow Timebase ***/ xdata unsigned int real_time_count = 0 ; /*** Timed Pulse Generation ***/ xdata unsigned char marker_angle = 128 ; data unsigned int marker_time = 0 ; unsigned int time_for_360 = 0 ; unsigned int time_last_360 = 0 ; xdata unsigned int frequency = 0 ; xdata unsigned int analog_data10 = 0 ; /*** Port sbit sbit sbit 1 Bit P10 P13 P14 Definitions ***/ = 0x90; // CC0 = 0x93; // CC3 = 0x94; // CC3
/*** Symmetrical PWM Generation ***/ xdata unsigned int symm_PWM_DR = 256 ; // Integer ratio from background xdata unsigned int symm_PWM_period = 2048 ; //PWM Period = 4096us / **************************************************************************** * General Definitions ****************************************************************************/ #define FOREVER 1 /*** CMx PWM Control ***/ #define Pulse_Width #define PWM_Resolution /*** code code code code code code code code code code code code code code code code 25 0.1666667 /* 50us marker pulse */ /* Smallest PWM time is at 12MHz */
Cursor Positioning Escape Codes For VT52 ***/ char Line0[] = { 0x1b,Y,0x20,0x20,0 } ; char Line1[] = { 0x1b,Y,0x21,0x20,0 } ; char Line2[] = { 0x1b,Y,0x22,0x20,0 } ; char Line3[] = { 0x1b,Y,0x23,0x20,0 } ; char Line4[] = { 0x1b,Y,0x24,0x20,0 } ; char Line5[] = { 0x1b,Y,0x25,0x20,0 } ; char Line6[] = { 0x1b,Y,0x26,0x20,0 } ; char Line7[] = { 0x1b,Y,0x27,0x20,0 } ; char char char char char char char char Line8[] = { 0x1b,Y,0x28,0x20,0 } ; Line9[] = { 0x1b,Y,0x29,0x20,0 } ; Line10[] = { 0x1b,Y,0x2a,0x20,0 } ; Line11[] = { 0x1b,Y,0x2b,0x20,0 } ; Line12[] = { 0x1b,Y,0x2c,0x20,0 } ; Line13[] = { 0x1b,Y,0x2d,0x20,0 } ; Line14[] = { 0x1b,Y,0x2e,0x20,0 } ; Line15[] = { 0x1b,Y,0x2f,0x20,0 } ;
www.hitex.co.uk
/ ************************************************************************** * Function Prototypes * **************************************************************************/ void ad_init(void); void serial_init(void); void serial0_init_BD(void); void serial0_init_T1(void); void send_byte(unsigned char); void ad_convert(void); void capture_init(void); extern void control_pwm(void) ; / ***************************************************************************** * This function initialises the A/D convertor (P103 of 517 manual) *****************************************************************************/ void ad_init(void) { ADCON0 &= 0x80 ; // Clear register but preserve BD bit ADCON0 |= 0x01 ; /* Single conversion internal Start Channel 0 */ } / ***************************************************************************** * This function will perform three conversions on the A/D convertor reading values from channels 0 - 3 * *****************************************************************************/ /* Channel 0 is read using the 10 bit programmable reference method */ void ad_convert(void) { unsigned char i; for(i = 1 ; i < 4 ; i++) { ADCON0 &= 0x80 ; // Preserve BD bit (80C537 only) ADCON0 |= i ; DAPR = 0 ; while (BSY) { ; } analog_data[i] = ((float) ADDAT * 5) / 255 ; } } ***************************************************************************** * These routines will transmit and receive single characters by Polled use of the serial Port 0 * *****************************************************************************/ /* Note: In real applications, an interrupt-driven serial port is usually preferable to avoid loss of characters.*/ char receive_byte(void) { if(RI == 1) { rx_byte = S0BUF ; RI = 0 ; } else { rx_byte = 0 ; } return(rx_byte) ; /* Polled use of serial port */
*/
*/
www.hitex.co.uk
void send_byte(char tx_byte) /*Polled use of serial port*/ { TI = 0; // Clear TI flag S0BUF = tx_byte ; while (!TI) {;} } / ************************************************************************** * This function initialises Serial Port 0 to run at 9600 Baud using the Siemens Baud rate generator (see P76 of the 517 Manual) * **************************************************************************/ /* This method does not tie up timer1 as on ordinary 8051s */ void serial0_init_BD(void) { BD = 1; /* Enable Baud rate generator */ PCON = PCON | 0x80; /* Set SMOD to double baud rate */ S0CON = 0x50; /* Mode 1, Receiver enabled */ TI = 1; /* Set Transmit interupt flag for first run through PRINTF */ } / ************************************************************************** * This function initialises Serial Port 0 to run at 4800 Baud using the Timer 1 auto-reload mode. * **************************************************************************/ /* To get 9600 baud with timer1 requires an 11.059MHz crystal */ void serial0_init_T1(void) { TH1 = 0x0f3 ; /* Timer 1 high byte (= reload value) SMOD = 0, F(Osc) = 12 MHz,and Timer 1 in mode 2,baudrate of 4800 Baud Timer 1 Interrupt is disabled after RESET */ /* Load Timer Mode Control Register Timer 1 under software control with TR1 as Timer in mode 2(= 8 bit, auto-reload) */ /* Serial connection in mode 1 (= 1 Start-, 8 Data-, 1 stop bit) start enabled Transmitter empty, Receiver empty */ /* SMOD = 1 to double baud rate */ /* Timer 1 start */
// //
TMOD |= 0x20 ;
S0CON = 0x52 ;
***************************************************************************** * Generate 2ms Timer Tick On Timer 0 *****************************************************************************/ /* Entered every timer0 overflow */ void timer0_init(void) { TR0 = 0 ; TMOD |= 01 ; /* 16 bit timer mode */ TH0 = 0xf8 ; /* Reload with with count for 2ms time base at 12MHz TL0 = 0x82 ; TR0 = 1 ; /* Start timer */ IEN0 |= 0x02 ; /* Enable Timer 0 Ext0 interrupts */ } /*init_timer_0*/
*/
www.hitex.co.uk
/ ***************************************************************************** * Timer0 Interrupt Service Routine *****************************************************************************/ /* An allowance really needs to be made for the fact that the reinitialisation process */ /* interrupt arguments are: 1 => generate interrupt vector at address 8*1 + 3 = 0x0b 2 => Switch to register bank two on entry, restore original bank on exit */ void timer0_int(void) interrupt 1 using 2 { /* Setup Next Interrupt ***/ IEN0 &= 0xfd ; TR0 = 0 ; TH0 = 0xf8 TL0 = 0x2f TR0 = 1 IEN0 |= 0x02 ; ; ; ; ; ; /* Clear interrupt flags /* Stop timer */ */
real_time_count++ P6 ^= 0x08 } /
***************************************************************************** * This function sets up the Capture Compare Unit and generates a PWM output on Port 4.0 (Pin 1). See p112 of the 517 Manual * * => CTREL = 65536 - 255 for 42.5us period/ overflow rate at 12MHz *
* Compare timer counts from CTREL to 65535 when Port bit is cleared Port bit set when Compare timer = CM0 to give asymmetric 8 bit PWM * *****************************************************************************/ /* This PWM requires no CPU time and is thus very efficient */ /* On 535 an interrupt service would be required to reload the compare */ /* register void pwm_init(void) { union { unsigned int temp ; unsigned char tmp[2] ; } t ; CTCON = 0 ; // Basic count time = 166ns
*/
t.temp = -pwm_period/PWM_Resolution ; // 42.5us initial period CTRELH = t.tmp[0] ; CTRELL = t.tmp[1] ; CM1 = t.temp + ((unsigned int)(65536 - t.temp) * pwm_duty_ratio)/100 ; // Initial duty ratio = 255:1 CM0 = CM1 ; CMSEL = CMSEL | = CMSEL | = 0 1 ; 2 ; ; // Assign CM0 to compare timer // Assign CM1 to compare timer
www.hitex.co.uk
0 1 ; 2 ;
; // Enable port 4.0 as PWM (front) // Enable port 4.1 as PWM (rear)
***************************************************************************** * This function initializes the Output Compare/Input Capture System on Timer2/Port 1. Two captures are enabled: CC0 captures an event on Pin CC1 will be triggered by a write to the low order Byte CCL1 * *****************************************************************************/ /* The capcom unit when attached to timer2 is suitable for frequency */ /* measurement and pulse generation void capture_CC0_init(void) { T2CON T2I1 T2I0 T2PS CTCON T2CM T2R1 CCEN CCEN CCEN = = = = = = = 0 ; 0 ; /* Timer 2 = 12MHz/24 = 2us/count */ 1; 1 ; /* /2 prescale for 2us/count */ 0 ; 1 ; 0 ; /* Timer 2 compare/capture in mode 1*/ /* No autoreload off CC0 */
1.0,
*/
= 0 ; |= 0x01 ; |= 0x0C ;
/* Input capture on CC0 */ /* Timer 2 latched into CC1 on write into CCL1 */ /* CC3 is output compare */ ; /* CC0 is initially -ve edge triggered */
CCEN I3FR
|= 0x80 ; = 0
P1 |
= 0x01
/* Put port 1.0 high for input capture */ ; ; /* Enable capture interrupt for road speed */ /* Enable output compare interrupt for ign0 */ /* CC4 port 1.4 is output compare mode 1 */ ; ; /* Initialise interrupt priorities */
EX3 EX2
= 1 = 1
CC4EN
= 0x05
= 0 = 0 |= 0x26 ; |= 0x3A ;
****************************************************************************** * Input Capture Interrupt On Port1.0/CC ******************************************************************************/ /* On every negative edge at P1.0, this routine is entered*/ /* Frequency calculation is possible using: frequency = 100000/(Timer2 Count Time * (this T2 - last timer2))
www.hitex.co.uk
= 50000/(CRC - last CRC) A new pulse is generated at a fixed angle after the interrupt using CC4 output compare - This is the basis for ignition and injection timing in engine management systems - The maths unit is essential for keeping run times short. */ void CC0_int(void) interrupt 10 using 3 { unsigned int temp ; /* Calculate Input Frequency */ frequency = 500000 /(unsigned long) (CRC time_last_360) ; time_for_360 = CRC - time_last_360 ; temp = CRC + (unsigned int) ((unsigned long)((unsigned long)time_for_360 * marker_angle)/255) ; EAL = 0 ; marker_time = temp ; EAL = 1 ; time_last_360 = CRC ; } /
**************************************************************************** * Generate marker pulse after CC0 interrupt * ****************************************************************************/ /* Entered in response to request from CC0 interrupt to generate a pulse at a predefined time afterwards. */ void marker_int(void) interrupt 9 using 2 { unsigned int timer_temp ; EX2 = 0 ; if(P14 == 0) { /* Port Pin Low */ if((int)(marker_time - CC4 - 500) > 0) { timer_temp = marker_time ; } else { timer_temp = marker_time + time_for_360 ; } CC4 = timer_temp ; IEX2 = 0 ; P14 = 1 ; // Turn on at next compare EX2 = 1 ; } else {
www.hitex.co.uk
/* Port Pin High */ timer_temp = CC4 + Pulse_Width ; CC4 = timer_temp ; IEX2 = 0 ; P14 = 0 ; // Turn off at next compare EX2 = 1 ; } }
***************************************************************************** * This function initialises the Output Compare/Input Capture System on Timer2/ * Port 1 to generate a symmetrical PWM on CC4. * *****************************************************************************/ /* This gives a PWM output where the on-time grows from overflow point */ either side of the timer 2
/* This is very useful for motor control as the symmetrical nature of the waveform reduces the higher current harmonics circulating in the windings under changing duty ratio conditions. */ /* Downside is that two interrupt services are required per period */
void symm_PWM_init(void) { T2CON = 0 ; /* Clear configuration register */ T2I1 = 0 ; /* Timer 2 = 12MHz/24 = 2us/count */ T2I0 = 1 ; T2PS = 1 ; /* /2 prescale for 2us/count */ /* Additional prescale possible on BB step */ T2CM = 1 T2R1 = 1 T2R0 = 0 ; ; ; /* Timer 2 compare/capture in mode 1 */ /* Autoreload off CC0 */ /* mode 1 (CRC into Timer2 at rollover)*/
/* Set initial reload value (4096us/2048 steps) */ CRC = -2*symm_PWM_period ; ET2 = 1 EX3 = 1 ; /* Enable timer2 overflow interrupt */ ; /*Enable capture interrupt for PWM drive*/
CCEN = 0 ; /* CRC - CC2 unused */ CCEN |= 0x80 ; /* CC3 is symmetrical PWM output */ IP0 = 0 ; /* Initialise interrupt priorities */
www.hitex.co.uk
IP1 = 0 ; IP1 |= 0x20 ; /* Make CC3/T2 Overflow interrupts priority 3 */ P10 = 0 ; } /**************************************************************************** * Timer 2 Overflow Interrupt * ****************************************************************************/ /* Interrupt at centre point of waveform to create next off point */ /* A good example of where C now givesoverhead when compared with assembler! */
/* USING gives single cycle registerbank switch like 166 */ void timer2_overflow(void) interrupt 5 using 2 { /* Runtime here limits min/max PWM DR */
P1 |= 0x01 TF2 = 0
CC3 = CRC + symm_PWM_DR ; IEX6 = 0 ; P13 = 0 ; EX6 = 1 ; P1 &= 0xfe } ; /* Toggle P1.0 to show centre of PWM */
/**************************************************************************** * CC4 Interrupt For Symmetrical PWM * ****************************************************************************/ /* Interrupt at end of first on period of waveform to create next on point */ void symm_PWM_CC3_int(void) interrupt 13 using 2 { /* Runtime here limits min/max PWM DR */ CC3 = -symm_PWM_DR ; IEX6 = 0 ; P13 = 1 ; EX6 = 0 ; // No further interrupts this period } /**************************************************************************** * Modulate Symmetrical PWM With Analog Input0 * ****************************************************************************/ /* Duty ratio is calculated in background to prevent having to do floating */ /* point calculations in interrupts */ /* Note: As PWM is symmetrical, duty ratio cannot exceed 1/2 period */
www.hitex.co.uk
t.tmp[0] = CRCH ; t.tmp[1] = CRCL ; symm_PWM_DR = ((65536-t.temp)/2 * (5-analog_data[1]))/5 ; } / **************************************************************************** * Drive TOC PWMs * ****************************************************************************/ void configure_pwm(void) { unsigned int temp ; union { unsigned int temp ; unsigned char tmp[2] ; } t ; t.temp = -pwm_period/((float)pwm_prescale * PWM_Resolution) ; CTRELH = t.tmp[0] ; CTRELL = t.tmp[1] ; CM1 = t.temp + ((unsigned int)(65536 - t.temp) * pwm_duty_ratio)/100 ; } / **************************************************************************** * Write First Message To Terminal * ****************************************************************************/ /* Whilst many printfs are used here, in a real program they would not */ /* in the main program loop due to huge run time */ void initialise_screen(void) { printf(%s,Clear) ; // Clear Screen printf(%s *** 80C537 Demo Program *** printf(%s,Line1) ; // Print Sign-On
} **************************************************************************** * Modulate PWM With Analog Input0 * ****************************************************************************/ void mod_pwm(void) { union { unsigned int temp ; unsigned char tmp[2] ; } t ; t.tmp[0] = CTRELH ; t.tmp[1] = CTRELL ; CM0 = t.temp + ((65536-t.temp) * (5-analog_data[1]))/5 ; } /**************************************************************************** * Send Information To Terminal * ****************************************************************************/ void print_info(void) { printf(%sAnalog 0a(8bits) printf(%sAnalog 2 (8bits) printf(%sPWM Fbck (8bit) printf(%sFrequency printf(%sTimer real_time_count) ; } = %-1.2f Volts ,Line3,analog_data[1]) ; = %-1.2f Volts ,Line4,analog_data[2]) ; = %-1.2f Volts ,Line5,analog_data[3]) ; = %d Hz ,Line6,(unsigned int)frequency) ; = %d x2 ms ,Line7,(unsigned int)
www.hitex.co.uk
/**************************************************************************** * Access Memory-Mapped Port * ****************************************************************************/ /* This function receives a port address and a value to write to it. It returns a value at a fixed address */ #include <absacc.h> // Contains definition of XBYTE[] macro // < and > mean that the include // file will be obtained from the // directory indicated by // the C51INC DOS environment variable
unsigned char get_memory_port(unsigned int port_address, unsigned char value) { unsigned char port_value ; unsigned char xdata *port_pointer ; // Returned variable // Declare uncommitted pointer into external memory space (xdata) // Make uncommitted pointer point at required address
/**************************************************************************** * Main Program - Full Version * ****************************************************************************/ /* This program initialises the peripheral functions and then loops around, reading the A/D converter and transmitting values down the serial port */ void main(void) { serial0_init_T1() ; ad_init() ; // Enter from reset vector // Initialise serial port 0 timer1 baudrate generator
capture_CC0_init() ; // Initialise input capture/T2 for freq. measurement // and timed pulse generation /* symm_PWM_init() ; // Generate symmetrical PWM on CC3 (P1.3) */ // (may only be present if capture_CC0_init() is // commented out) pwm_init() ; // Initialise TOC PWM on CMx timer0_init() ; EAL = 1 ; initialise_screen() ; /*** Loop Forever ***/ while(FOREVER) { P6 ^= 0x08 ; // Refresh MAX691 watchdog every background loop // This is attached to port 6, bit 3. // Read all analog channels // Send analog values etc. to terminal // Modulate PWM0 with analog channel 0 input // Initialise timer 0 overflow 2ms // Enable interrupts // Write startup message to terminal interrupt
www.hitex.co.uk
www.hitex.co.uk
20 Appendix C
C51 Version 6 Code Comparison
The following competitive benchmarks for the Keil C51 compiler were run in June 2001 to compare the output generated by the Keil Version 5 and Version 6 compilers. The source code used for the Whetstone and Dhrystone benchmarks is included with the Keil evaluation compiler.
20.1 Dhrystone
Dhrystone is a general-performance benchmark test originally developed by Reinhold Weicker in 1984. This benchmark is used to measure and compare the performance of different computers or, in this case, the efficiency of the code generated for the same computer by different compilers. The test reports general performance in Dhrystone per second. Like most benchmark programs, Dhrystone consists of standard code and concentrates on string handling. It uses no floating-point operations. It is heavily influenced by hardware and software design, compiler and linker options, code optimizing, cache memory, wait states, and integer data types. Compiler
Memory Model ROM Model Optimization Level Exe Time 12MHz 8051 Exe Time 25MHz DS320 Module Code Size Dynamic XDATA Total Code Size
20.2 Whetstone
Whetstone is a benchmark test which attempts to measure the speed and efficiency at which a computer performs floating-point operations. The result of the test is given in units called whetstones. Compiler
Memory Model ROM Model Optimization Level Exe Time 12MHz 8051 Exe Time 25MHz DS320 Module Code Size Dynamic XDATA Total Code Size
www.hitex.co.uk
For each C operation the number of cycles to execute typical examples is given for all supported data types. To give some idea of execution times, with a 12MHz 8031, one cycle is 1us. Please note that timings for long and float operations are considerably reduced on the Siemens 80C537 due to its 32 bit maths unit. Cycle Table Key
Unsigned Char Char Unsigned Int Int Unsigned Long Long float 8 bits 16 bits 32 bits 8 sign 16 sign 32 sign float (32 bits IEEE single
precision)
Notes: Timings include parameter loading pre-amble where appropriate. Clock speed assumed to be 12MHz (1us/cycle), if not otherwise stated. The small memory model was used so that no off-chip ram was employed.
www.hitex.co.uk
+
Cycles:
Addition
8 bits 3 8 sign 3 16 bits 6 16 sign 6 32 bits 63 32 sign 63 float 140
Cycles:
Subtraction
8 bits 4 8 sign 4 16 bits 7 16 sign 7 32 bits 64 32 sign 64 float 146
*
Cycles:
Multiplication
8 bits 10 8 sign 13 16 bits 46 16 sign 48 32 bits 160 32 sign 160 float 131
/
Cycles:
Division
8 bits 8 8 sign 19 16 bits 26 16 sign 39 32 bits 1611 32 sign 1624 float 134
%
Cycles:
Modulo
8 bits 3 8 sign 3 16 bits 6 16 sign 6 32 bits 63 32 sign 63 float 140
cos(x)
float Cycles: 1433
tan(x)
float Cycles: 2407-9570
exp(x)
float Cycles: 3002-7870
www.hitex.co.uk
sqrt(x)
float Cycles: 42-2860
log(x)
float Cycles: 45-6050
Other Maths Functions are: cosh sinh abs rand Examples: x = sin(3.1415926/2) ; find the sine of (PI/2) x = sqrt(2) ; find square root of x Hyperbolic cosine Hyperbolic sine find absolute value generate a random number
Bitwise Functions These allow direct bit by bit operations to be performed. &
Cycles:
AND
8 bits 3 8 sign 3 16 bits 6 16 sign 6 32 bits 63 32 sign 63
|
Cycles:
Inclusive OR
8 bits 3 8 sign 3 16 bits 6 16 sign 6 32 bits 63 32 sign 63
^
Cycles:
Exclusive OR
8 bits 3 8 sign 3 16 bits 6 16 sign 6 32 bits 63 32 sign 63
!
Cycles:
NOT (Invert)
8 bits 3 8 sign 3 16 bits 6 16 sign 6 32 bits 63 32 sign 63
Examples: a = b & 0xfe ; make a equal to a bit wise AND with 0xFE (11111110) a = b | 0x01 ; make a equal to a bit wise OR with 0x01 (00000001)
www.hitex.co.uk
Two Operand Functions = == Make left side equal to right side test for left being equal to right
+=
Cycles:
-=
Cycles:
*=
Cycles:
/=
Cycles:
Example: a=b if(a == b) { } a += 3 a /= 10 ; Make a equal to b check whether a is equal to b ; a is equal to itself + 3 a is equal to itself divided by 10
Relational And Logical Functions These are used to test data and are usually used with if() and other control statements. &&
Cycles:
AND
8 bits 6 8 sign 6 16 bits 8 16 sign 8 32 bits 28 32 sign 28 float 28
||
Cycles:
OR
8 bits 6 8 sign 6 16 bits 8 16 sign 8 32 bits 28 32 sign 28 float 28
>
Cycles:
Greater than
8 bits 5 8 sign 9 16 bits 7 16 sign 11 32 bits 85 32 sign 88 float 302
www.hitex.co.uk
<
Cycles:
Less than
8 bits 5 8 sign 9 16 bits 7 16 sign 11 32 bits 85 32 sign 88 float 302
>=
Cycles:
<=
Cycles:
Examples:
if(a > b) { /* executable code 1 */ } if( (a == 1) && (b == 2)) { /* executable code 1 */ } else { /* Alternative executable code */ }
Execute code 1 if a is equal to 1 and b equal to 2 otherwise execute the alternative block.
if( (a == 1) || (b == 2)) { /* executable code */ }
Execute if a is equal to 1 or b equal to 2 Increment And Decrement These make direct use of the INC xx opcodes and consequently are very fast. Normally, they are used as part of larger C expressions where a value needs incrementing or decrementing. ++
Cycles:
Increment
8 bits 1 8 sign 1 16 bits 5 16 sign 5 32 bits 59 32 sign 59 float 140
Decrement
8 bits Cycles: 1 8 sign 1 16 bits 5 16 sign 5 32 bits 59 32 sign 59 float 140
Examples:
i ++ ; ++ i ; i - - ; - - i ; Post-increment i Pre-increment i Post-decrement i Pre-increment i
www.hitex.co.uk
Sequentially write all the values in array onto Port 1. i points to next value after after current access
*/ */ */ */
Shifting These allow values to be shifted left or right by a number of bit positions, determined either by a constant at compile time or a variable at run time. >>
Cycles:
Right shift
8 bits 7 8 sign 7 16 bits 56 16 sign 56 32 bits 129 32 sign 129 (7 shifts)
<<
Cycles:
Left shift
8 bits 7 8 sign 7 16 bits 56 16 sign 56 32 bits 129 32 sign float 129 (7 shifts)
Examples:
a << 2 a << b ; ; shift a left two bit places shift a left by a number of bit positions determined by the value of b
Strings And Arrays These are a number of sequential locations that together constitute some sort of larger single data object. Arrays may be single or multidimensional, as is BASIC etc.. Strings are as in BASIC but, because of Cs near-assembler nature, they must be handled with care - you must always be aware where they end! A true string is always finished with a zero, called the null terminator.
array[4] array[4][2] ABCDEF ; ; ; an array of four elements, STARTING at element 0 a two-dimensional array of four by 2 elements,STARTING at element 0,0 a true string of ascii characters, with a zero after the last element. It is the use of doublequotation marks that defines this as a true string. Looking at the memory in which this was declared would show:65,66,67,68, 69,70,00
{ A,B,C,D,E,F }
an array of ascii characters with no null terminator. Note the { and } defining the limits of the complete data object.
www.hitex.co.uk
Fill a RAM area with ABCD0 prior to starting the main() function. The 0 is the null terminator
- Copy string pointed at by *source to another string pointed at by *destination. The second string is completely overwritten in the process.
strcat(*destination,*source) ; 8 element strings Cycles: 913
- Concatenate the string pointed at by *source onto another string pointed at by *destination.
result = strcmp(*destination,*source) ; 8 element strings Cycles: 152
- Compare two strings pointed at by *source with another string pointed at by *destination. If equal, value of 1 is returned.
result = strlen(*source) ; 8 element string Cycles: 505
In addition to these functions, a range of other string and character functions are provided to perform tasks such as:
atoi() atof() itof() isalpha() isdigit() isalnum() ascii to integer ascii to floating point integer to floating point test for alpha character test for digit test for alpha-numeric
strcpy(x,y) ; - Copies string pointed at by y to the empty array x. Note, C does not check that x is actually big enough to hold the string!
www.hitex.co.uk
Program Control
if (condition) {/* Code */;} else { /* Alternative Code */ ; }
- Perform one of either two blocks of code, depending on the result of a specified condition
8 bits Cycles: 3 8 sign 3 16 bits 6 16 sign 6 32 bits 79 32 sign 79 float 131
Cycles:
do-case - execute blocks of code determined by the value of a control variable No data measured Examples:
if(a == b) { /* Executable code*/ }
www.hitex.co.uk
execute code until i is equal to end_value (i.e. not greater than) but if x is ever equal to i then break out of the loop immediately.
Accessing Bits Bit A single bit variable, located in the Bit-addressable memory area A single bit variable, located in the bit-addressable memory, either in the user or sfr area. When located in the user area, sbit is a defined bit within a larger char or int variable.
Sbit
Examples:
bdata char x ;/* x is an 8 bit signed number in the bit area */ sbit sign_bit = x ^ 8 ; /* bit 8 is the sign bit */
Now to test whether x is negative, the state of sign_bit need only be tested:
if(sign_bit) { /* x is negative */ ; sign_bit = 0 ; }
Gives:
JNB CLRB POSITIVE: sign_bit sign_bit POSITIVE
Gives:
MOV ANL JZ ANL POSITIVE: A,x A,080H POSITIVE x,07FH
www.hitex.co.uk
Examples:
P1 = 0xff ADCON |= 0x80 P1^0 = 1 ; ; ; writes value ff to port 1 OR 80 hex into ADCON set bit 0 of port 1
- Print the characters, numbers and or strings contained within () to the serial and thence to a terminal (VT100 etc).
16 * 8 bit characters Cycles: 3553 scan(&x,...)
- Store incoming characters from terminal into memory buffers indicated within (). Note that the & implies the address of buffer x.
16 * 8 bit characters
Cycles: Examples:
Results Are: 3.000 & 4.256 is printed on terminal screen. Here the numerical values of the two numbers are substituted into the two %f symbols.
char keyboard_buffer[20]
scan(&keyboard_buffer) read incoming characters from terminal keyboard into memory starting at the address of keyboard_buffer.
www.hitex.co.uk
www.hitex.co.uk
21 Appendix D
A Useful Look-up Table Application Please note this is a program from the original C51 Primer. In time it will be converted to C51 V7 and MISRA-C compliance. In a real system, getting a true floating point sine would take around 1ms. In a very timecritical application this may well be unacceptable. If only an approximation is required, it is possible to use linear interpolation to get values between the known values in the table. To do this, a look-up table interpolator is required. Below is a combine one and two dimensional table interpolator, taken from a real project. Here, the 2-D capability is not used! Note: The term .i.Map;map is used instead of look-up table.
#include <reg517.h> *************************************************************************/ /* Main Interpolation Routine */ *************************************************************************/ /* */ /* This routine has been optimised to run as fast as possible at the ***/ /* expense of code size. Further savings could be made by re-using temporary RAM. */ /* With a 5 x 5 map, run time is 490us - 735us at 12MHz */ /* or 290us - 400us with 12MHz Siemens 80C537 */ *************************************************************************/ /* Input Map Format: */ /* */ /* { x_size,y_size, */ /* x_breakpoints, */ /* y_breakpoints, */ /* */ /* map_data } ; */ /* */ *************************************************************************/ unsigned char interp(unsigned char x_value, /* x-axis input unsigned char y_value, /* y-axis input */ unsigned char const *map_base /* pointer to table base */ ) { /* Declare Local RAM */ unsigned char x_size unsigned char y_size unsigned unsigned unsigned unsigned unsigned unsigned unsigned unsigned unsigned unsigned unsigned unsigned char char char char char char char char char char char char ; ;
*/
www.hitex.co.uk
/* Get Size Of Map */ x_size = *map_base ; y_size = map_base[1] ; /* Create Temporary Map Scanning Pointer */ map_base += 2 ; x_offset = x_size - 1 ; mp = map_base + (unsigned char)x_offset ; /* Locate Upper and Lower X Breakpoints */ /* Find break point immediately below x-value */ while((x_value < *mp) && (x_offset != 0)) { mp ; x_offset ; } /* Extract Upper And Lower X-Breakpoints From Map */ x_break_point1 = mp[0] ; x_break_point2 = mp[1] ; x_temp2 = (x_break_point2 - x_break_point1) ; /* Safety Check To Prevent Divide By Zero */ if(x_temp2 == 0) { x_temp2++ ; }
/* Check For x_value Less Than Bottom Breakpoint Value */ if((x_offset == x_size - 1) || (x_value <= x_break_point1)) { x_value = x_break_point1 ; } x_temp1 = (x_value - x_break_point1) ; /* Locate Upper And Lower Y Breakpoints */ /* Check For 1D Map */ if(y_size != 0) { y_offset = y_size - 1 ; mp = map_base + (unsigned char)(x_size + y_offset) ; while ((y_value < *mp) && (y_offset != 0)) { y_offset ; mp ; } /* Extract Upper And Lower Y-Breakpoints */ y_break_point1 = mp[0] ; y_break_point2 = mp[1] ; if((y_offset == y_size - 1) || (y_value <= y_break_point1)) { y_value = y_break_point1 ; } /* Get Map Values */ map_base += x_size + y_size + x_size * y_offset + x_offset ; map_x1y1 = *(map_base) ;
www.hitex.co.uk
map_x2y1 = *(map_base + 1) ; /* Interpolate 2D Map Values */ /* Defines used to remove need for function calling */ #define #define #define #define x y n d map_x1y1 map_x2y1 x_temp1 x_temp2
y -= x ; if(!CY) { result_y1 = (unsigned char) (x + (unsigned char)(((unsigned int)(n * y))/d)) ; } else { result_y1 = (unsigned char) (x - (unsigned char)(((unsigned int)(n * -y))/d)) ; } map_x1y2 = *(map_base + x_size) ; map_x2y2 = *(map_base + x_size + 1) ; #undef x #undef y #define x map_x1y2 #define y map_x2y2 y -= x ; if(!CY) { result_y2 = (unsigned char) (x + (unsigned char)(((unsigned int)(n * y))/d)) ; } else { result_y2 = (unsigned char) (x - (unsigned char)(((unsigned int)(n * -y))/d)) ; } #undef #undef #undef #undef x y n d y_temp2 = (y_break_point2 - y_break_point1) ; /* Prevent Divide By Zero */ if(y_temp2 == 0) { y_temp2++ ; } #define x result_y1 #define y result_y2 #define n (y_value - y_break_point1) #define d y_temp2 y -= x ; if(!CY) { result = (unsigned char) (x + (unsigned char)(((unsigned int)(n * y))/d)) ; } else { result = (unsigned char) (x - (unsigned char)(((unsigned int)(n * -y))/d)) ; } } /* End of 2D Section */ else { /* 1D Interpolation Only */ map_base = map_base + x_size + x_offset ;
www.hitex.co.uk
#define x map_x1y1 #define y map_x2y1 #define n x_temp1 #define d x_temp2 y -= x ; if(!CY) { result = (unsigned char) (x + (unsigned char)(((unsigned int)(n * y))/d)) ; } else { result = (unsigned char) (x - (unsigned char)(((unsigned int)(n * -y))/d)) ; } } /* End 1D Section */ return result ; } Here is the test harness used to drive it: /*** Sine Conversion Map ***/ /* Converts integer angle into sine value, 0-255 */ /* (x_size,y_size, x_breakpoints, y_breakpoints, map_data) */ const unsigned char sine_table[] = { 07,00, 00,15,30,45,60,75,90, 00,66,127,180,220,246,255 } ; /** Test Variables **/ unsigned char input_x_val ; unsigned char input_y_val ; unsigned char sine_value /** Routine To Be Tested **/ extern interp(unsigned char, unsigned char, unsigned char const *) ; /** Global Variables **/ unsigned int angle ; /** Dummy Harness Program **/ void main(void) { while(1) { for(angle = 0 ; angle < 0x100 ; angle++) { sine_value = interp(angle,0,sine_table) ; } }
www.hitex.co.uk
www.hitex.co.uk
www.hitex.co.uk
C was developed initially (between 1969 and 1973) to fit into a space of 8K. Also C was designed in order to write an (portable) operating system. Unlike today, where disks and memory are inexpensive, at the time Multics was around operating systems had to take up as little space as possible, to leave room for applications on minimal memory systems. This makes it ideal for embedded systems. C was developed from B and influenced by a group of several other languages. Interestingly BCPL, from which B was developed used // for comments just as C++ does and now finally C99! One of the problems with C is that now the majority of people learn C in a Unix or PC environment with plenty of memory (real or virtual), disk space, native debugging tools and the luxury of a screen, keyboard and usually a multi-tasking environment. Because C was originally designed for (compact) operating systems it can directly manipulate the hardware and memory addresses (not always in the way expected by the programmer). This can be very dangerous in normal systems let alone embedded ones! C permits the user to do many unorthodox things. A prime example is to declare 2 arrays of 10 items A[10] and B[10]. Then knowing that (in the particular implementation in use) they are placed together in memory use the A reference for speed step from A[0] to A[19]. This is the sort of short cut that has got C a bad name. Yes, I have seen this done. The syntax of C and its link with UNIX (famous for its terse commands) means that many programmers try to write C using the shortest and most compact methods possible. This has led to lines like: while (l--) *d++ = *s++; or typedef boll (* func)(M *m);
This has given C the reputation for being a write only language and the domain of hackers.
www.hitex.co.uk
As C was developed when computing was in its infancy and there were no guidelines for SW engineering. In the early days many techniques were tried that should by now have been buried. Unfortunately, some of them live on.
www.hitex.co.uk
Having debunked K&R 1st Edition one should heed the commandment (found in some form in most faiths) "honour they parents." K&R 1st edition is the root of C and the source from which it all flowed. If you can find a copy (or K&R 2nd edition) buy one and dip into it but do not use it as a definitive reference or use it to teach people. Many (ten or twenty years ago) did learn from it, but then, it was the definitive (and only) work.
www.hitex.co.uk
standard throwing all the chapters out by one. Paragraph numbering was the same in both. NOTE:- This version of ISO C is used for MISRA-C also for most embedded compilers as later "improvements" such as multi-byte characters and other changes for C99 were not needed (and in many cases not easy to implement) . At the time of writing , early 2003, there were still only two C99 compilers available. ISO-C Amendment 1 1993 Multi byte Characters ISO-C Technical Corrigendum 1995/6 (T1) Work on the new standard starts. Due to the fact that many things (eg MISRA-C) reference ISO C 90 the author has managed to persuade BSI (British Standards Institute) to make ISO C90 (with Amendment 1 and TC1 ) available again at a comparatively low price of 30 (about $45US).
23.1.5 ISO-C99
ISO/IEC 9899:1999
The ISO-C99 is now the definitive international work on the Language It is not what I would call "readable" though. It was some months after the ISO-C99 was finished that ANSI (and all the other National Bodies around the world) adopted it. A copy of ISO-C is a useful document to have (if only to win bets at lunchtime!) ISO-C99 ISO9899:1999 This can be obtained (correct as of early 2001) for $18 US as a PDF from :- www.techstreet.com/ncitsgate.html which is where I (and most of the UK standards panel) got my copy. It prints out to 537 pages. I printed it out, on a double-sided photocopier via the network on A4 double sided and it is quite usable. The good news is, at the time of writing (November 2001) It is likely that a book publisher in partnership with the ACCU (see www.accu.org) will turn both the C and C++ standards in to books at around the 30 mark!
www.hitex.co.uk
In late 2000 the ISO C committee was getting more work packages to do with embedded C and things to help the conversion of mathematical Fortran users to C. It was at this point the editor of this work took over as Convener of the UK ISO C committee.
The next round of work was meant to help the embedded user and will move C further from C++. Unfortunately the amendments were mainly in the form of DSP math and extensions only of use to 32-bit embedded systems with lots of space. There was a lot of discussion in 2003 with some violent disagreements of the direction C should take.
www.hitex.co.uk
New features in C++ that might once have been put into C are less likely to happen. Partly because there are more embedded people involved and there are fewer desktop people involved. The other reason is that some C++ is not possible in 8 bit systems. There are some C++ compilers for small systems but the are not widely used and have some severe restrictions. Their use is dictated more by fashion than engineering reasons. In fact even C++ is being restricted as EC++ for embedded use. For embedded C++ see:http://www.caravan.net/ec2plus/ Where you can get the Embedded C++ "standard" as supported by many compiler manufacturers. This was an initiative started in Japan that has speard world wide. The other major thing the (UK) standards panel is trying to do is stabilize and iron out the ambiguities of the C99 standard. The ambiguities are one of the reasons that, two (now three) years later, no-one had managed to do a fully implemented C99 Embedded C compiler. Actually I don't think there is a full C99 compiler for any use. As of the summer of 2002 a couple of compilers had managed it but no mainstream industrial embedded compilers vendors even thought about it. Where next for the C standard? Judging from history, you should expect preparation of the next revision of the C standard to begin around 2004. Most likely we will ask for feedback on an early draft around 2007. In between those times is the best time to provide constructive input, but be warned that unsolicited proposals without an active champion participating in the committee are unlikely to get very far. If you really want to work on substantial improvements, it would be wise to join the committee (via your National Body) well in advance, so you can gain a feel for how the group dynamics work. If you want to get involved please email me at chris@phaedsys.org
www.hitex.co.uk
One thing to be wary of is that if the book is written by an academic it is likely to have been written for his course It may well refer to development boards and other equipment made by him at the university and not generally available. Also it may assume you are doing or have done other courses and modules in the collage and therefore miss out useful information because you will get it on the other course. Not all books written by academics are like this but do take care when buying. Incidentally if anyone wants the ISO C99 standard the best place to get it from is a US web site www.techstreet.com/ncitsgate.html Note:- At the time of writing (summer 2003) BSI were looking at publishing the ISO C and C++ standards at 30 printed but loose leaf. Stop press: Hitex UK are now able to offer the C90 standard, on which most embedded compilers, and MISRA-C are based . As of October 2003 Hitex UK was offereing a bundle of C90 and MISRA-C for 50 Uk Pounds
www.hitex.co.uk
www.hitex.co.uk
www.hitex.co.uk
www.hitex.co.uk
Neither is 2400 and is out a fair amount Keil recommend that the rate should be within 2%
www.hitex.co.uk
A couple of other useful equations are:The maximum baud rate possible for a crystal Baud = Crystal/constant 256 and the minimum crystal needed for a given baud rate Min Crystal = Baudrate / constant The constant is 384 for SMOD = 1 192 for SMOD = 0
There is more on baud rate calculation at : http://www.keil.com/support/docs/689.htm and Keil have an on-line calculator at: http://www.keil.com/c51/baudrate.asp The table below shows part of the pattern for TH1 Thisd shows why not all baud rates are possible at all frequencies. baud Rate Xtal 1.8432 1.8432 2.0000 2.0000 3.6864 3.6864 4.0000 4.0000 4.096 4.096 5.0000 5.0000 5.5296 5.5296 6.0000
SMOD
110 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 D4 AH D1 A1 A9 51 A1 43 9F 3E 8A 13 7D 72
300 F0 E0 EF DD E0 C0 DD BB DC B9 D5 A9 D0 A0 CC
600 F8 F0 F7 EF F0 E0 EF DD EE DC EA D5 E8 D0 E6
1200 FC F8 F7 F8 F0 F7 EF 7F EE F5 EA F4 E8 F3
2400 FE FC FC F8 7F 7F F5 FA F4 -
4800 FF FE FE FC FD FA -
9600 FF FF FE FD -
19200 FF -
38400 -
56700 -
115200 -
www.hitex.co.uk
www.hitex.co.uk
www.hitex.co.uk
www.hitex.co.uk
Mnemonic JB bitAdr, codeAddr AJMP codeAddr RET RL A ADD A, #value ADD A, dataAddr ADD A, @R0 ADD A, @R1 ADD A, R0 ADD A, R1 ADD A, R2 ADD A, R3 ADD A, R4 ADD A, R5 ADD A, R6 ADD A, R7 Mnemonic JNB bitAdr, codeAdr ACALL codeAdr RETI RLC A ADDC A, #wert ADDC A, dataAdr ADDC A, @R0 ADDC A, @R1 ADDC A, R0 ADDC A, R1 ADDC A, R2 ADDC A, R3 ADDC A, R4 ADDC A, R5 ADDC A, R6 ADDC A, R7 Mnemonic JC codeAdr AJMP codeAdr ORL dataAdr, A ORL dataAdr, #value ORL A, #wert ORL A, dataAdr ORL A, @R0 ORL A, @R1 ORL A, R0 ORL A, R1 ORL A, R2 ORL A, R3 ORL A, R4 ORL A, R5 ORL A, R6 ORL A, R
www.hitex.co.uk
Mnemonic JNC codeAdr ACALL codeAdr ANL dataAdr, A ANL dataAdr, #value ANL A, #value ANL A, dataAdr ANL A, @R0 ANL A, @R1 ANL A, R0 ANL A, R1 ANL A, R2 ANL A, R3 ANL A, R4 ANL A, R5 ANL A, R6 ANL A, R7 Mnemonic JZ codeAddr AJMP codeAddr XRL dataAdr, A XRL dataAdr, #value XRL A, #value XRL A, dataAddr XRL A, @R0 XRL A, @R1 XRL A, R0 XRL A, R1 XRL A, R2 XRL A, R3 XRL A, R4 XRL A, R5 XRL A, R6 XRL A, R7 Mnemonic JNZ codeAddr ACALL codeAddr ORL C, bitAddr JMP @A+DPTR MOV A, #value MOV dataAddr,#value MOV @R0, #value MOV @R1, #value MOV R0, #value MOV R1, #value MOV R2, #value MOV R3, #value MOV R4, #value MOV R5, #value MOV R6, #value MOV R7, #value
www.hitex.co.uk
Mnemonic SJMP codeAddr AJMP codeAddr ANL C, bitAddr MOVC A, @A+PC DIV AB
MOV dataAddr, dataAddr
MOV MOV MOV MOV MOV MOV MOV MOV MOV MOV
dataAddr, @R0 dataAddr, @R1 dataAddr, R0 dataAddr, R1 dataAddr, R2 dataAddr, R3 dataAddr, R4 dataAddr, R5 dataAddr, R6 dataAddr, R7
Mnemonic MOV DPTR, #value16 ACALL codeAdr MOV bitAdr, C MOVC A, @A+DPTR SUBB A, #value SUBB A, dataAddr SUBB A, @R0 SUBB A, @R1 SUBB A, R0 SUBB A, R1 SUBB A, R2 SUBB A, R3 SUBB A, R4 SUBB A, R5 SUBB A, R6 SUBB A, R7 Mnemonic ORL C, /bitAddr AJMP codeAddr MOV C, bitAddr INC DPTR MUL AB reserved (see 251) Also used by Chip con CC01010 for TRAP MOV @R0, dataAddr MOV @R1, dataAddr MOV R0, dataAddr MOV R1, dataAddr MOV R2, dataAddr MOV R3, dataAddr MOV R4, dataAddr MOV R5, dataAddr MOV R6, dataAddr MOV R7, dataAddr
www.hitex.co.uk
Code Bytes Cycles Mnemonic B0 2 2 ANL C, /bitAddr B1 2 2 ACALL codeAddr B2 2 1 CPL bitAddr B3 1 1 CPL C B4 3 2 CJNE A, #value, codeAddr B5 3 2 CJNE A, dataAddr, codeAddr B6 3 2 CJNE @R0, #value, codeAddr B7 3 2 CJNE @R1,#value, codeAddr B8 3 2 CJNE R0, #value, codeAddr B9 3 2 CJNE R1, #value, codeAddr BA 3 2 CJNE R2, #value, codeAddr BB 3 2 CJNE R3, #value, codeAddr BC 3 2 CJNE R4, #value, codeAddr BD 3 2 CJNE R5, #value, codeAddr BE 3 2 CJNE R6, #value, codeAddr BF 3 2 CJNE R7, #value, codeAddr Code Bytes Cycles C0 2 2 C1 2 2 C2 2 1 C3 1 1 C4 1 1 C5 2 1 C6 1 1 C7 1 1 C8 1 1 C9 1 1 CA 1 1 CB 1 1 CC 1 1 CD 1 1 CE 1 1 CF 1 1 Code Bytes Cycles D0 2 2 D1 2 2 D2 2 1 D3 1 1 D4 1 1 D5 2 2 D6 1 1 D7 1 1 D8 2 2 D9 2 2 DA 2 2 DB 2 2 DC 2 2 DD 2 2 DE 2 2 DF 2 2 Mnemonic PUSH dataAddr AJMP codeAddr CLR bit Addr CLR C SWAP A XCH A, data Addr XCH A, @R0 XCH A, @R1 XCH A, R0 XCH A, R1 XCH A, R2 XCH A, R3 XCH A, R4 XCH A, R5 XCH A, R6 XCH A, R7 Mnemonic POP dataAddr ACALL codeAddr SETB bitAddr SETB C DA A
DJNZ dataAddr, codeAddr
XCHD A, @R0 XCHD A, @R1 DJNZ R0, code Addr DJNZ R1, codeAddr DJNZ R2, codeAddr DJNZ R3, codeAddr DJNZ R4, codeAddr DJNZ R5, codeAddr DJNZ R6, codeAddr DJNZ R7, codeAddr
www.hitex.co.uk
Code Bytes Cycles Mnemonic E0 1 2 MOVX A, @DPTR E1 2 2 AJMP codeAddr E2 1 2 MOVX A, @R0 E3 1 2 MOVX A, @R1 E4 1 1 CLR A E5 2 1 MOV A, data Addr E6 1 1 MOV A, @R0 E7 1 1 MOV A, @R1 E8 1 1 MOV A, R0 E9 1 1 MOV A, R1 EA 1 1 MOV A, R2 EB 1 1 MOV A, R3 EC 1 1 MOV A, R4 ED 1 1 MOV A, R5 EE 1 1 MOV A, R6 EF 1 1 MOV A, R7 Code Bytes Cycles F0 1 2 F1 2 2 F2 1 2 F3 1 2 F4 1 1 F5 2 1 F6 1 1 F7 1 1 F8 1 1 F9 1 1 FA 1 1 FB 1 1 FC 1 1 FD 1 1 FE 1 1 FF 1 1 Mnemonic MOVX @DPTR, A ACALL codeAddr MOVX @R0, A MOVX @R1, A CPL A MOV dataAddr, A MOV @R0, A MOV @R1, A MOV R0, A MOV R1, A MOV R2, A MOV R3, A MOV R4, A MOV R5, A MOV R6, A MOV R7, A
www.hitex.co.uk
27 Appendix L Refferences
This is the full set of references used across the whole QuEST series. Not all the references are referred to in all of the QuEST papers. All of these books are in the authors own library and most have been reviewed for the ACCU. The reviews for these books and about 3000 others are on http://www.accu.org/bookreviews/public/ Andrews & Ince Practical Formal Methods with VDM, McGraw-Hill, 1991, ISBN 0--7-707214-6 Ball , Stuart. Debugging Embedded Microprocessor Systems, Newnes, 1998, ISBN 0-7506-9990-6 Ball , Stuart. Embedded Microprocessor Systems: Real world design 2nd Ed, Newnes, 2000, ISBN 0-7506-7234-X Ball , Stuart. Analog Interfacing to Embedded Microprocessors Real world design, Newnes, 2001, ISBN 0-7506-7339-7 Baumgartner J Emulation Techniques, Hitex De internal paper, may 2001 Barr, Michael. Programming Embedded Systems in C and C++. O'Rilly, 1999, ISBN1-56592-354-5 Beach, M. Hitex C51 Primer 3rd Ed, Hitex UK, 1995, Beach, M. Hitex C51 Primer 3rd Ed, Hitex UK, 1995, http://www.hitex.co.uk (Draft 3.5 is on http://quest.phaedsys.org/) Beach M, Embedding Software Quality Part 1, Hitex UK Available from www.Hitex.co.uk Berger, Arnold. Embedded Systems Design: Anintroduction to Processes, Tools and Techniques. CMP Books, 2002, ISBN 1-57820-073-3 Black, Rex. Managing the Testing Process (2nd ed), Wiley, 2002, ISBN 0-47122398-0 Bramer Brian & Susan, C for Engineers 2nd Ed, Arnold, 1997, ISBN 0-34067769-4 Bramer Brian & Susan C++ for Engineers, Arnold, 1996 ISBN0-340-64584-9
www.hitex.co.uk
Brooks, Fred. The Mythical Man Month: Essays On Software Engineering, Anniversary Edition. Addison Wesley, 1995 ISBN 0-201-83595-9 Brown John, Embedded Systems Programming In C and Assembley, VNR, 1994, ISBN 0-442-01817-7 Buchner F Embedding Software Quality Part 1, Hitex DE Available from www.Hitex.co.uk Buchner F The Classification Tree Method, Internal paper: Hitex DE, 2002 Buchner F The Tessy article for the ESC II Brochure Hitex DE, 2002 Burden, Paul. Perilous Promotions and Crazy Conversions in C, PR Ltd, MISRA-C Conference 2002. http://www.programmingreasearch.com/ Burns & Wellings Real-Time Systems and Their Programming Languages, Addison Wesley, 1989, ISBN 0-201-17529-0 Chen Poon & Tse, Classification-tree restructuring methodologies: a new perspective IEE Procedings Software, Vol 149 no 2 April 2002 pp 65-74 Clements Alan, 68000 Family Assembly Language Pub PWS 1994 Coalman et al, Object-Orientated Development: The Fusion Method, Prentice-Hall, 1994, ISBN0-13-101040-9 Computer Weekly RAF JUSTICE :How the Royal Air Force blamed two dead pilots and covered up problems with the Chinooks computer system FADEC Computer Weekly 1997 Cooling J, Real-Time Software Systems ITC Press 1997 ISBN 1-85032-274-0 Cooling J. Software Design for Real time Systems ITC Press 1991 1-85032279-1 COX B, Software ICs and Objective C, Interactive Programming Environments, McGraw Hill, 1984 Dasgupta, Subrata. Computer Architecture: A Modern Synthesis: Volume 1 Foundations, Wiley, 1989 , ISBN 0-471-61277-4 Dasgupta, Subrata. Computer Architecture: A Modern Synthesis: Volume 2 Advanced Topics, Wiley, 1989 , ISBN 0-471-61276-6
www.hitex.co.uk
Defenbaugh & Smedley, C through Design, Franklin, Beedle & Associates, 1988, ISBN0-938661-10-8 Deitel, Harvey, Operating Systems, 2nd Ed Addison Wesley, 1990, ISBN 0-20150939-3 Douglas BP Doing Hard Time, Developing Rea-Time Systems with UML, Addison Wesley, 1999, ISBN0-201-49837-5 Edwards, Keith. Real-Time Structured Methods: Systems Analysis, Wiley, 1993, ISBN 0-471-93415-1 Embley, Kurtz, Woodfield Object-Orientated Systems Analysis, Yourdon Press, 1992, ISBN 0-13-629973-3 Fenton et al, Software Quality Assurance and Measurement, A world wide Perspective, ITCP, 1995 ISBN1-85032-174-4 Fertuck, L, Systems Analysis and Design with CASe tools Pub WCB 1992 Gamma, Erich et al, Design Patterns: Elements of Reusable ObjectOrientated Software, Addison Wesley, 1994, ISBN 0-201-63361-2 Gansel, Jack. The art of Programming Embedded Systems, Academic Press, 1992, ISBN 0-12,274880-8 Gansel Jack, The Embedded Muse Various editions. Pub Jack Gansel
http://www.ganssle.com/index.htm
Gerham, Moote & Cylaix, Real-Time Programming: A Guide to 32-bit Embedded Development, Addison Wesley, 1998, ISBN0-201-540-0 Goldberg & Rubin, Succeeding with Objects: Decision Frameworks for Project Management, Addison Wesley , 1995, ISBN 0-201-62878-3 Hatton Les, Safer C:Developing Software for High-integrituy and Safety Critical Systems, Mcgraw-Hill(1994) ISBN 0-07-707640-0 Heath , Steve, Microprocessor Architectures RISC, CISC & DSP 2nd ED, Butterworth-Heinemann 1995 ISBN 0-7506-2303-9 Heath , Steve, Embedded Systems Design, Newnes 1997 ISBN0-7506-3237-2 Hills C A, Embedded C: Traps and Pitfalls Chris Hills, Phaedrus Systems, quest.phaedsys.org/ September 1999,
www.hitex.co.uk page 183 of 190 Version 3.6 (draft)
Hills C A, Embedded Debuggers Chris Hills & Mike Beach, Hitex (UK) Ltd. April 1999 http://www.hitex.co.uk & quest.phaedsys.org Hills C A, Tile Hill Style Guide Chris Hills, Phaedrus Systems, 2001, quest.phaedsys.org/ Hills CA & Beach M, Hitex, SCIL-Level A paper project managers, team leaders and Engineers on the classification of embedded projects and tools. Useful for getting accountants to spend money Download from www.scillevel.org HMHO Home Office Reforming the Law on Involuntary Manslaughter : The governments Proposals www.homeoffice.gov.uk/consult/lcbill.pdf Jacobson et al, Object-Orientated Software Engineering: A Use Case Driven Apporach, Addison-Wesely, 1992, ISBN 0-201-55435-0 Johnson S. C. Johnson, Lint, a Program Checker, in Unix Programmers Manual, Seventh Edition, Vol. 2B, M. D. McIlroy and B. W. Kernighan, eds. AT&T Bell Laboratories: Murray Hill, NJ, 1979. Jones A History of punched cards. Douglas W. Jones Associate Professor of Computer Science at the University of Iowa. http://www.cs.uiowa.edu/~jones/cards/index.html see also http://www.cwi.nl/~dik/english/codes/punched.html Jones, Derek. The 7+/- 2 Urban Legend. MISRA-C Conference 2002.
http://www.knosof.co.uk/
Kaner, Bach & Pettichord, Lessons Learned in Software Testing, A Context Driven Approach. , Wiley, 2002 ISBN 0-471-08112-4 Kernighan Brian W & Pike , The Practice of Programming. Addison Wesley 1999 ISBN 0-201-61586-X Kerzner, Harold. Project Management: A Systems Approach to Planning, Scheduling, and Controlling. (7th ed) Wiley, 2001. ISBN 0-471-39342-8 Koenig A C Traps and Pitfalls, Addison Wesley, 1989 K&R The C programming Language 2nd Ed., Prentice-Hall, 1988 Lyons. JL, Ariane 5: Flight 501 Failure. Report by the Enquiry Board , Ariane, 1996
www.hitex.co.uk
Maric B, How to Misuse Code Coverage. Reliable Software Technologies, 1997. www.testing.com Maguire, Steve. Writing Solid Code, Microsoft Press, 1993, ISBN1-55615-5514 McConnell Steve, Code Complete, A handbook of Practical Software Construction. Microsoft Press, 1993, ISBN 1-55615-484-4 MISRA Guidelines For The Use of The C Language in Vehicle Based Software. 1998 From http://www.misra.org.uk/ and http://www.hitex.co.uk/ Morton, Stephen. Defining a "Safe Code" Development Process, Applied Dynamics International, 2001 Murphy, Nial. Front Panel: Designing Software for Embedded User Interfaces, R&D Books 1998 ISBN 0-87930-528-2 Oram & Talbot, Managing Projects with Make 2nd Ed , O'Reilly 1993 ISBN 0937175-90-0 Parr, Andrew, Industrial Control Handbook 3rd Ed, Newnes, 1998, ISBN07506-3934-2 Pressman Software Engineering A Practitioners Approach. 3rd Ed McGrawHill 1992 ISBN 0-07-050814-3 PRQA Programming Research QA-C static analysis tool. www.programmingresearch.com Randel, Brian. The Origins of Digital Computers, Springer Verlag 1973 Ritchie D. M. The Development of the C Language Bell Labs/Lucent Technologies Murray Hill, NJ 07974 USA 1993 available from his web site http://cm.bell-labs.com/cm/cs/who/dmr/index.html This is well worth reading. Rumbaugh et al, Object Orientated Modelling and Design, Prentice Hall, 1991, ISBN 0-13-630054-5 Simon, David, An Embedded Software Primer, Addison Wesley,1999, ISBN 0201-61569 Selis, Gullekson & Ward. Real-Time Object-Orientated Modeling, Wiley, 1994, ISBN 0-417-59917-4
www.hitex.co.uk
Soligen & Berghout, The Goal/Question/Metric Method : A practical Guide for Quality Improvement of Software Development, McGraw-Hill, 1999, ISBN 0-07-709553-7 Sutter Ed. Embedded Systems: Firmware Demystified, CMP Books, 2002 ISBN 1-57820-09907 Vahid & Givargis Embedded System Design: A Unified Hardware/Software Introduction, Wiley, 2002, ISBN 0-471-38678-2 Van Vilet Software Engineering Principals and Practice Pub Wiley 1993 ISBN 0-471-93611-1BN 0-471-93611-1 Watkins, John. A Guide To Evaluating Software Testing Tools (V3) Rational Ltd 2001 Watson & McCabe, Structured Testing: A testing Methodology Using the Cyclomatic Complexity Model Webster, Bruce. The Art of Ware, Sun Tzu's Classic Work Reinterpreted, M&T Books, 1995 ISBN 1-55851-396-5 Whitehead, Richard. Leading A Software Development Team: A Developers Guide to Successfully Leading People and Projects, Addison Wesley, 2001 ISBN 0-201-67526-9 Wilson, Graham.. Embedded Systems & Computer Architecture, Newnes, 2002, ISBN 0-7506-5064-8 Xie & Engler Using Redundancies to Find Errors, Computer Systems Laboratory Stanford University: http://www.stanford.edu/~engler/p401-xie.pdf
www.hitex.co.uk
28 Standards
This is the full set of standards used across the whole QuEST series. These are Standards as issued by recognised national or international Standards bodies. Note due to the authors position in the Standards Process some of the documents referred to are Committee Drafts or documents that are amendments to standards that may not have been made publicly available by the time this is read. ISO 9899:1990 Programming Languages - C 9899:1999 Programming Languages - C 9899:-1999 TC1 Programming Languages-C Technical Corrigendum 1 9945 Portable Operating System Interface (POSIX) 9945-1 Base Definitions 9945-2 System Interfaces 9945-3 Shell and Utilities 9945-4 Rational 12207:1995 Information Technology- Software Life Cycle Processes 14764:1999 Information Technology - Software Maintenance 14882:1989 Programming Languages - C++ 15288:2002 Systems Engineering - System Lifecycle Processes JTC1/SC7 N2683 Systems Engineering Guide for ISO/IEC 15288 WDTR 18037.1 Programming languages, their environments and system software interfaces Extensions for the programming language C to support embedded Processors IEC 61508 :FCD Functional Safety or Electrical/Electronic/Programmable Electronic Safety Relegated Systems Part 1 General Requirements Part 2 Requirements for Electrical/Electronic/Programmable Electronic Safety -Relegated Systems Part 3 Software Requirements Part 4 Definitions and Abbreviations Part 5 Examples of methods for the determination of SIL Part 6 Guidelines for the application of parts 2 and 3 Part 7 Over View of Technical Measures ISO/IEC JTC 1 N6981 Functional Safety and IEC61508: A basic Guide.
www.hitex.co.uk
IEEE You may be wondering where ANSI C is ANSI C became ISO C 9899:1990 and ISO 9899 has been the International standard ever since. See "A Standard History of C" in Embedded C Traps and Pitfalls 1016-1998 Recommended Practice for Software Design Descriptions 5001:1999 The Nexus 5001 Forum Standard for a Global Embedded Processor Debug Interface NASA http://sel.gsfc.nasa.gov/website/documents/online-doc.htm SEL-81-305 Recommended Approach to Software Development Rev 3 SEL-84-101 Manager's Handbook for Software Development Rev 1 SEL-93-002 Cost And Schedule Estimation Study Report SEL-94-003 C Style Guide August 1994 Goddard Space Flight Centre SEL-94-005 An Overview Of The Software Engineering Laboratory SEL-94-102 Software Measurement Guidebook Revision 1 SEL-95-102 Software Process Improvement Guidebook Revision 1 SEL-98-001 COTS Study Phase 1 Initial Characterization Study Report OSEK Network Management Concept and Application Programming Interface Version 2.50 31st of May 1998 Operating System Version 2.1 revision 1 13. November 2000 OIL: OSEK Implementation Language Version 2.2 July 27th, 2000 Communication Version 2.2.2 18th December 2000 BCS Standard For Software Component Testing Draft 3.3 1997 MOD Defence Standards Def-Stan 00-13 REQUIREMENTS FOR THE ACHIEVEMENT OF TESTABILITY IN
www.hitex.co.uk
Def-Stan 00-42 part 2 RELIABILITY AND MAINTAINABILITY ASSURANCE GUIDES PART 2: SOFTWARE Def-Stan 00-54 Part 1 REQUIREMENTS FOR SAFETY RELATED ELECTRONIC HARDWARE IN DEFENCE EQUIPMENT PART 1: REQUIREMENTS Def-Stan 00-54 part 2 REQUIREMENTS FOR SAFETY RELATED ELECTRONIC HARDWARE IN DEFENCE EQUIPMENT PART 2: GUIDANCE Def-Stan 00-55 Part 1 REQUIREMENTS FOR SAFETY RELATED SOFTWARE IN DEFENCE EQUIPMENT PART 1: REQUIREMENTS Def-Stan 00-55 Part 2 REQUIREMENTS FOR SAFETY RELATED SOFTWARE IN DEFENCE EQUIPMENT PART 2: GUIDANCE Def-Stan 00-56 Part 1 SAFETY MANAGEMENT REQUIREMENTS FOR DEFENCE SYSTEMS PART 1: REQUIREMENTS Def-Stan 00-56 part 2 SAFETY MANAGEMENT REQUIREMENTS FOR DEFENCE SYSTEMS PART 2: GUIDANCE Def-Stan 00-58 part 1 HAZOP Studies on Systems Containing Programmable Electronics Part 1 Requirements Def-Stan 00-58 part 2 HAZOP Studies on Systems Containing Programmable Electronics Part 2 General Application Guidance QuEST Series (see http://QuEST.phaedsys.org)
QuEST 0
QuEST 1
QuEST 2
QuEST 3 QuEST 4 QA1 QA2 QA3 QA4
Embedded Debuggers
Advanced Embedded Testing For Fun C51 Primer
SCIL-Level Tile Hill Embedded C Style Guide QuEST-C PC-Lint & DAC MISRA-C Compliance Matrix
www.hitex.co.uk
Chris@phaedsys.org http://www.phaedsys.org/
www.hitex.co.uk