1 Introduction
At present, the high-end dental chair equipment in the market is basically arbitrarily determined by foreign companies, which are generally expensive and the technology is not transferred. As people pay more and more attention to oral health, it is particularly necessary to develop a high-end integrated oral diagnosis and treatment system suitable for national conditions. The dental chair controller is the core of the integrated dental diagnosis and treatment system. Its design level reflects the degree of automation of the entire system and is also an important basis for judging the grade of the dental chair.
This article researched and developed a dental chair control system based on ARM embedded technology. The application of embedded operating system in the control system and the use of functions such as multi-task management, synchronization and communication between tasks can further improve the reliability and real-time performance of the system, and enhance the level of intelligent control and management.
2 Overall function overview
The overall block diagram of the system is shown in Figure 1. The design of dental chair control system must meet medical needs and be easy to use and operate. In actual work, high-end dental chairs must not only meet the four basic directions of vertical and supine movements, but also must be able to complete teacup water supply, spittoon flushing, shadowless lamp control, position data collection, X-ray transmission, and communication with the host computer. Ensure stable and reliable movement and real-time data transmission. The dental chair control system CPU responds to the external keyboard input, executes corresponding commands, and drives the external hydraulic transmission mechanism to realize the movement of the dental chair and the work of other external equipment.
Because the dental chair control system has many control points, and they are concentrated in two places, the instrument panel and the dental chair base, this article divides the dental chair control system into three major modules: panel control module, base control module, and power supply module.
2.1 The hardware design of the system
Based on chip performance, power consumption, system requirements and other requirements, this system uses S3C44B0X chip and ATmega16 chip to form a dual CPU module for collaborative control. S3C44B0X is a 16/32-bit RISC processor produced by Samsung. Its bus structure uses Samsung ARM CPU embedded microprocessor bus structure. S3C44B0X provides comprehensive and universal on-chip peripherals, including 1 LCD controller, 5 PWM channel timers and 1 channel internal timer, 71 general-purpose I/O ports and 8 channels of external interrupt sources, 8 channels of 10 Bit ADC, SPI synchronous data communication serial ARM embedded dental chair control system interface, etc., with good scalability, as the main processor of the dental chair system.
ATmega16 is a low-power 8-bit CMOS microcontroller with enhanced AVR RISC structure, rich in internal resources, with 32 programmable I/O ports, 512-byte EEPROM, four-channel PWM output, and 8-channel 10-bit ADC conversion Channels, 3 internal timers/counters and SPI synchronous data communication serial ports, as the core and control chip of the base module of the dental chair system, control the movement of the dental chair and collect the position data of the dental chair.
The principle structure diagram of dental chair control system is shown in Figure 2. The base control board CPU is connected with a 3×2 pedal keyboard, the CPU receives keyboard input to execute corresponding commands, and controls the on and off of the hydraulic transmission control relays on the base module, and controls the four directions of the dental chair up and down, and the mouthwash position And move to the clinic location. Taking into account the safety of the user and the stability and reliability of the dental chair equipment, the CPU must monitor the feedback information of the four-direction limit switch and the base obstacle protection switch in real time and make corresponding protective actions during the movement.
In order to achieve the purpose of convenient use, the panel control module must also be able to control the above-mentioned movement of the dental chair and memorize the position of the dental chair in real time. Therefore, the system must realize the real-time communication between the base plate and the panel. Combining the characteristics and actual needs of the CPU chip, the serial peripheral interface (SPI) is used for high-speed data synchronous transmission. The panel CPU can receive the input of the external expansion keyboard to execute the response command, and reserves the expansion interface.
Because the external equipment belongs to the strong current control part for the CPU, in order to maintain the control signal connection between the two, but also to avoid electrical interference, that is, to implement weak current and strong current isolation, the panel control module adds a photoelectric isolation circuit. The brightness digital adjustment design of the shadowless lamp adopts the PWM method. S3C44B0X has 5 timers that can provide PWM output. Since the shadowless lamp used in the system has a rated power of 50W and a rated voltage of 12V, it is a high-current operation. In order to ensure the adjustment accuracy of the shadowless lamp, a field effect tube IRF540 is used in the control circuit to cooperate with a photoelectric isolation circuit.
2.2 System software design
Taking into account the system's future expansion of image acquisition functions and complex man-machine interface and other factors, the μC/OS-II operating system is transplanted on S3C44B0X. μC/OS-II is a popular real-time operating system with free and open source codes. It not only has the characteristics of small structure, curable, cropped, multi-tasking, and deprived real-time kernel, but also its real-time performance, stability and reliability have also been widely recognized. The smallest kernel of μC/OS-II can be compiled to 1.5KB, which can be widely used in various types and scales of embedded systems from 8-bit to 64-bit microcontrollers. In terms of memory usage, μC/OS-II is a tailorable real-time kernel. The more tasks that need to be scheduled in an application, the larger the RAM space required.
Estimated by running 20 tasks, the μC/OS-II kernel occupies less than 2KB of RAM space, and 20 semaphores, mailboxes, etc. can be used to complete synchronization and communication between tasks.
The system uses the T0 timer of S3C44B0X as the clock source of the operating system, and the interrupt frequency is 10ms. The system calls the keyboard query program every 10ms to respond to keyboard events in real time. The SPI communication between the serial port and the CPU is received and sent in an interrupt mode. As long as there is no interruption at any time, the execution of the interruption is higher than that of any task to ensure real-time communication. According to the working requirements of the control system, tasks can be divided into keyboard tasks, teacup water supply tasks, teacup water supply timing settings tasks, shadowless light tasks, LED indicator tasks, alarm information tasks, and spittoon flushing tasks.
Because the communication between tasks, tasks and interrupts is based on the centralized management of the semaphore mechanism, it is necessary to establish a semaphore protection mechanism.
In the start task StartTask, a series of semaphores and mailboxes are first established:
Then, use the OSTaskCreate() function to create 7 tasks. Finally, delete itself in the initial task.
(1) Keyboard task: call OSSemPend (Sem_Keyboard, 0, &err) to get the semaphore. After obtaining the semaphore, the task will call the mailbox sending message task OSMboxPost (OS_EVENT*pevent, void*msg) to wake up other corresponding tasks.
(2) Teacup water supply task: add water to the teacup. This task is awakened by OSMboxPost (Mbox_Cup, Msg_Cup).
(3) The task of setting the timing of the teacup water supply: set the timing of the teacup water supply. This task is awakened by OSMboxPost (Mbox_CupSetting, Msg_CupSetTIng).
(4) Alarm information task: the alarm information such as the alarm when the dental chair moves to the obstacle position, and the corresponding processing. The task calls OSSemPend (Sem_AlarmTask, 0, &err) to obtain the semaphore.
(5) The task of flushing the spittoon: flushing the spittoon. This task is awakened by OSMboxPost (Mbox_Ty, Msg_Ty).
(6) LED lights indicate tasks: illuminate the corresponding keyboard indicator lights in a dynamic scan mode to indicate the current system working status. This task is awakened by OSMboxPost (Mbox_LED, Msg_LED).
(7) The task of the shadowless lamp: switch and continuously adjust the brightness of the shadowless lamp.
This task is awakened by OSMboxPost (Mbox_Move, Msg_Move).
In the system, set the highest priority of task 1, which is task 2, task 3 to task 6, and the program flow is shown in Figure 3.
Among the above tasks, the CPU mainly accepts keyboard input to wake up other corresponding tasks. In addition, there are corresponding tasks for recording position and communication with the upper computer, which will not be described in detail here.
3 Control system debugging results
The dental chair control system can respond to the input in time and move as required. The returned memory position error is controlled within 1mm, and the teacup water level error does not exceed 2mm. The operation result shows that the control system communicates with the host computer. The real-time and reliability of the communication between the two CPUs meet the design requirements, and the entire system runs smoothly and reliably, which is convenient for debugging and maintenance, and improves the automation level and grade of the dental chair.
4 Conclusion
This article adopts embedded processor and real-time multitasking operating system to enhance the functions of the system, improve the reliability and real-time performance of the system, and make the system have good scalability, which is convenient for the subsequent expansion of image acquisition and human-machine interface functions. Lay the foundation for the development of high-end products.
The dental chair control system can improve the level of domestic dental chair production and design. It has been put into production in a medical device factory in Guangzhou, creating good economic and social benefits.
300Mbps Wireless-wifi Repeater
* [300Mbps High Speed & Stable Signal]: WIFI Extender with latest dual band technology can provide up to 300Mbps for 2.4GHz, a total rate of about 300Mbps, maximizing reduces the loss of data transmission and enjoying HD video/game and fast speeds internet mode.
* [360° Full Signal Coverage]: Our Wifi range extender equipped with 2*2dBi intelligent Omnidirectional high gain antenna, high penetration, covering up to 360 degrees, boosts internet WiFi Coverage up to 2000 square feet, eliminate dead zones in house with weak Wi-Fi coverage. Enjoy Lag-Free Connection to any type of devices.
* [2 Application Mode & High Compatibility]: This Wi-Fi Repeater supports multi connection modes for different needs. -- Repeater Mode and AP Mode. And it has been tested can connects up to 20 devices and compatible with any standard router or gateway or access point. Gigabit Ethernet port also allow this Wi-Fi booster function as a wireless adapter to connect wired devices. It`s widely used at home, working areas, and hotels.
* [Easy to set up]: Only takes 10 seconds! This WiFi signal booster can easily expand the wireless coverage by press the WPS button. Or set up via browser website(192.168.188.1) based configuration in almost any device, including IOS and Android mobile platforms. And its smart signal indicator can help you to find the best location for wifi coverage.
* [Safe Connect & Warranty]: Adopt latest wireless security encryption, effectively prevent external malicious interference and prevent unauthorized access and protect your important data, ensure the security of equipment and personal privacy.
300Mbps Wireless-Wifi Repeater,Wifi Amplifier,Wireless Extender,Wifi Booster For Home
Shenzhen Jinziming Electronic Technology Co.,LTD , https://www.powerchargerusb.com