|
5 |
edited tags
|
||
|
4 |
edited tags
|
||
|
3 | extend/rephrase question | ||
|
I've worked on a number of different embedded systems. They have all used typedefs (or #defines) for types such as UINT32. This is a good technique as it drives home the size of the type to the programmer and makes you more conscious of chances for overflow etc.etc. But on some systems you know that the compiler and processor won't change for the life of the project. So what should influence your decision to create and enforce project-specific types? EDIT I think I managed to lose the gist of my question, and maybe it's really two. With embedded programming you may need types of specific size for interfaces and also to cope with restricted resources such as RAM. This can't be avoided, but you can choose to use the basic types from the compiler. For everything else the types have less importance. i++;can become ADD REG,1 AND REG, 0xFFwhich is unecessary. So I think my question should have been :- given the constraints of embedded software what is the best policy to set for a project which will have many people working on it - not all of whom will be of the same level of experience.
|
||||
|
2 |
|
||
|
1 |
|
||
