Weight 2K: Precision Electronic Scale
Design Specifications |
Description of Product
Johnson Lai Anthony Lazzaro James Solberg
The instrument shall conform to the following general specifications:
The instrument shall conform to the following functional specifications:
Overview:
This design project assignment for an electronic scale to be implemented
using a strain gauge bridge and the 80KC196 eval board was completed as
follows:
The control software was written primarily in assembly language to save memory space and take advantage of the register to register architecture of the 80KC196 microcontroller. Only those function the required floating point math were implemented in C language. . As it turned out, the complete code size was 15.5k bytes.
Serial input:
Serial data is read from SBUF on the RI interrupt and stored in the
buffer PC_STR based on the ECHO flag in the SC_STAT register. If the character
received is 'reset' (*), the stack is reset and the program goes back to
the remote start location. The ECHO flag in SC_STAT controls whether the
incoming character is saved as a string or as a single character. Setting
the ECHO flag causes the ISR to repeat the character back to the terminal
and to save it as the next character in the string buffer. Otherwise the
character is written over the previous character stored in the first location
in the string buffer. If the system is not in remote mode, all characters
except the 'reset' character are ignored.
Serial output:
Serial output is achieved by using the onboard UART set to run at 1200
baud. The function is given a pointer to a string and that string is processed
character by character until a NULL character is detected. Output to the
LCD is done in a similar fashion allowing re-use of string constants for
either output mode.
Keypad input:
Keypad input is read from IO_PORT0 on the A/D lines AD0 through AD3.
No signals are sent out to the decoder circuit. The enable signal is set
active to minimize the data lines needed and eliminate the need for output
signals to the keypad. The data ready signal is sent to EXTINT using pin
IO_PORT2.2. The EXTINT interrupt is used to detect a key press and the
character is decoded using a conversion string. The character is stored
in the buffer KB_STR based on the flags in the SC_STAT register. The reset
‘*’ character triggers a reset to local mode similarly to the method used
by serial input. If the system is not in local mode, all keys except the
'*' are ignored.
A/D conversion:
The eval board offers a 'precision voltage reference', which was used
for measurements at first. It was adjusted to 5.00V initially. It was discovered
that the output of the strain gauge amplifier had a maximum output of 1.68V.
Investigation found a different feedback resistor (470W) had been used.
The desired resistor value was calculated to be 141W so a 140W resister
was used. During testing the A/D data became fixed at full scale. It was
determined that the 'precision voltage reference' was latched up to +10V.
it was also found that the AD7 and AD6 inputs were no longer useable. We
used AD5 ultimately. It was later suggested that the voltage reference
might latch up if the input voltage exceeded the reference voltage. Regardless,
we abandoned the 'precision voltage reference' in favor of a stable one.
A 78L05 low current voltage regulator was connected to the +12V supply
to provide a 5.05V reference to the A/D converter relative to AGND. This
reference worked very well most of the time. It has a 200mA capacity, which
well exceeds the current requirements specified for external voltage references.
On one occasion the regulator went in to thermal shutdown for no apparent
reason. The system was powered down and restarted and worked fine after
that. It is suspected that the A/D section of the eval board has serious
problems.
Test measurements were made of the strain gauge amp's output noise and it was determined that there was 40mv p-p noise coupled from the power supply and from the eval board. Attempts to filter the noise were unsuccessful. It was then determined to do all the filtering digitally. 20mv peak voltage corresponds to about 4 counts of error.
Polling loop and Main Menu:
The menu display is maintained by a polling loop that determines the
correct input to monitor and processes commands based on the scale status
register SC_STAT.
The system maintains several flags in SC_STAT:
1 KB_MODE: set means the unit is in local mode. Clear means remote mode.
2 ECHO: set means show characters as typed and store as a string. Clear
means only save the last character.
3 KB_BUSY: set means keypad input is in process
4 PC_BUSY: set means serial input is in process
5 Other flags were defined but not used in the code
The polling loop checks the appropriate input string for a command and processes it as necessary. If a command character is detected, that command function is called. Command functions return to the polling loop. There is a timeout counter that returns all commands to the main menu after a specified amount of time has passed without input from the user.
The main menu could be improved by the implementation of an 'active menu' that changes the display with time. We had programmed such a menu that displayed each command item sequentially and had the capacity to display more information than the final static menu but it was removed during final debugging and while it was determined to operate properly, there was not enough time to re-install it.
Tare function:
Tare is calculated based on post-calibrated data and occurs independently
of the calibration coefficients. Tare is only available while in weigh
mode. To use Tare, press '0' while in weigh mode.
Weigh function:
Upon entering Weigh mode, weight readings are continuously updated
and displayed. Tare is done using the current reading. Any other main menu
command can be accessed from the weigh mode by pressing the appropriate
key. To return to the Main menu press '#' or [ENTER]. The weigh mode has
the potential to show accuracy to 0.1 grams if the scale can be isolated
from vibration adequately. Testing showed that it can detect the impulse
of a 0.05 gram crimp terminal dropped into the pan.
Count function:
The Count function has a submenu with two choices:
1 New Quantity Factor.
2 Count Quantity.
The New Quantity Factor mode prompts for the number of items. The number is typed and then entered by pressing either '#' or [ENTER]. If zero is entered, the conversion factor is not changed and the command exits to the Main Menu. With a new quantity entered, it then calculates and stores the conversion factor based on the current scale measurement. This command proceeds directly to the Count Quantity mode.
The Count Quantity mode continuously calculates and displays count values. One can return to New Quantity Factor mode by pressing '1'. One can return to the main menu by pressing '#' or [ENTER].
The New Quantity Factor mode could be improved by displaying the current weight after the quantity is entered and then waiting until the user presses '#' or [ENTER] to signify that the reading has stabilized.
Calibrate function:
Calibrate mode calculates new calibration coefficients to fit the A/D
readings to a second order polynomial. The current scale reading is continuously
displayed and the user is prompted to place specific calibration weights
on the scale: empty, 500g, and 1000g. The user then presses '#' or [ENTER]
when the scale reading has stabilized. After all three calibration readings
have been entered the new coefficients are calculated and stored. The Tare
offset is set to zero. To cancel calibration mode one must press '*' before
entering the third weight. Once the third weight is entered the calibration
cannot be cancelled. When calibrated carefully, the scale is able to measure
weight within 1g of their actual value over its entire range (1 to 1000g).
A more advanced calibration method was attempted using five points and performing a least-squares fit to a second order polynomial. The intent was to average out the errors in each reading to get a better calibration coefficient calculation, but while it worked well in simulation, the implementation had problems we were unable to debug in time so the three point fit was used instead.
Reset:
The reset character must be sent from the device that is to receive
control of the scale. e.g. to go to remote mode press '*' on the terminal.
The default mode is local. LCD communications are protected from interrupts
using the DI/EI instructions to prevent mistiming of the LCD signals. The
calibration function call is also protected by DI/EI instructions to prevent
data corruption. During the demonstration it was found that random input
from the keypad did not disable the scale. In some instances it was possible
to interrupt the display of the main menu but it was always possible to
use the Reset key to reset the system. To reset to the default state of
the scale, the unit must be powered off and restarted.
Conclusion:
The 80KC196 eval board is a viable choice for embedded processor applications.
Our project was relatively simple and did not use many of the features
of this processor (such as software timers, high speed IO and CAM, or the
peripheral transaction mode). However, we still were able to get good results.
With adequate memory expansion, quite sophisticated systems could be realized.
We were surprised by how sensitively and accurately we were
TOP OF PAGE | BACK to engineering credentials | BACK to engineering projects | JAMES' HOME
last modified 7 august 2000