CN101894069A - Early serial printing debugging method and device in Linux - Google Patents
Early serial printing debugging method and device in Linux Download PDFInfo
- Publication number
- CN101894069A CN101894069A CN2010101971616A CN201010197161A CN101894069A CN 101894069 A CN101894069 A CN 101894069A CN 2010101971616 A CN2010101971616 A CN 2010101971616A CN 201010197161 A CN201010197161 A CN 201010197161A CN 101894069 A CN101894069 A CN 101894069A
- Authority
- CN
- China
- Prior art keywords
- linux
- printing
- space
- bootloader
- address
- Prior art date
- Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
- Granted
Links
Images
Landscapes
- Debugging And Monitoring (AREA)
Abstract
本发明揭示了一种Linux中的早期串口打印调试方法及装置。该方法包括:在嵌入式单板的CPU地址空间中,预留一信息传递空间;在Bootloader阶段实现串口驱动和打印函数,并将打印函数地址保存到预留的信息传递空间;将预留的信息传递空间地址作为启动参数传递给Linux;从信息传递空间中取得Bootloader中实现的打印函数地址。本发明可以在Linux启动的最早期实现真正的调试信息即时打印,提高了Linux开发、移植的效率。
The invention discloses an early serial port printing debugging method and device in Linux. The method comprises: reserving an information transmission space in the CPU address space of the embedded single board; realizing serial port driver and printing function in the Bootloader stage, and saving the address of the printing function into the reserved information transmission space; The address of the information transfer space is passed to Linux as a startup parameter; the address of the printing function implemented in the Bootloader is obtained from the information transfer space. The invention can realize instant printing of real debugging information at the earliest stage of Linux startup, and improves the efficiency of Linux development and transplantation.
Description
技术领域technical field
本发明涉及到嵌入式设备的早期打印调试方法,特别涉及到一种使用Linux操作系统的嵌入式设备的早期打印调试方法。The invention relates to an early printing debugging method of an embedded device, in particular to an early printing debugging method of an embedded device using a Linux operating system.
背景技术Background technique
目前Linux操作系统的应用范围非常广泛,使用Linux的嵌入式设备越来越多。在新设备上,Linux内核的移植、开发工作成为使用Linux的第一个技术性难关。At present, the application range of the Linux operating system is very wide, and there are more and more embedded devices using Linux. On new devices, the transplantation and development of the Linux kernel has become the first technical difficulty in using Linux.
Linux内核的移植开发,首先需要解决的是调试方法的问题。当前在Linux中进行早期调试非常困难,在Printk功能启用之前(包括2.6.22版本之后加入的early_printk),缺乏直观高效的调试信息输出方式。许多技术开发人员使用点亮设备上指示灯的方式来获得当前Linux系统的工作状态,这种方式不但使用不便,而且能够展示的信息相当有限。For the transplantation and development of the Linux kernel, the first thing that needs to be solved is the problem of the debugging method. It is very difficult to do early debugging in Linux. Before the Printk function is enabled (including early_printk added after version 2.6.22), there is no intuitive and efficient way to output debugging information. Many technical developers use the method of lighting the indicator light on the device to obtain the working status of the current Linux system. This method is not only inconvenient to use, but also the information that can be displayed is quite limited.
发明内容Contents of the invention
本发明的主要目的为提供一种Linux中的早期串口打印调试方法,可提高Linux开发、移植的效率。The main purpose of the present invention is to provide an early serial port printing debugging method in Linux, which can improve the efficiency of Linux development and transplantation.
为了实现上述目的,本发明提出一种Linux中的早期串口打印调试方法,包括步骤:In order to achieve the above object, the present invention proposes an early serial port printing debugging method in Linux, comprising steps:
在嵌入式单板的CPU地址空间中,预留一段受保护的用于从Bootloader向Linux传递信息的信息传递空间;In the CPU address space of the embedded board, reserve a protected information transfer space for transferring information from Bootloader to Linux;
在Bootloader阶段实现串口驱动和打印函数,并将打印函数地址保存到预留的信息传递空间;Realize the serial port driver and printing function in the Bootloader stage, and save the address of the printing function to the reserved information transmission space;
将预留的信息传递空间地址作为启动参数传递给Linux;Pass the reserved information transfer space address to Linux as a startup parameter;
从信息传递空间中取得Bootloader中实现的打印函数地址。Obtain the address of the print function implemented in the Bootloader from the information transfer space.
优选地,所述信息传递空间、Bootloader空间、Linux空间不互相覆盖。Preferably, the information transfer space, Bootloader space, and Linux space do not overlap each other.
优选地,所述打印函数的类型包括Bootloader早期用汇编代码实现的不使用堆栈的打印以及Bootloader后期用C代码实现的使用堆栈的打印。Preferably, the type of the printing function includes the printing without using the stack realized by the assembly code in the early stage of the Bootloader and the printing using the stack realized by the C code in the later stage of the Bootloader.
优选地,所述打印函数的地址保存在信息传递空间中。Preferably, the address of the printing function is stored in the information transfer space.
本发明还提出一种Linux中的早期串口打印调试装置,包括:The present invention also proposes an early serial port printing debugging device in Linux, comprising:
地址规划模块,在嵌入式单板的CPU地址空间中,预留一段受保护的用于从Bootloader向Linux传递信息的信息传递空间;The address planning module reserves a protected information transfer space for transferring information from Bootloader to Linux in the CPU address space of the embedded single board;
实现保存模块,在Bootloader阶段实现串口驱动和打印函数,并将打印函数地址保存到预留的信息传递空间;Implement the saving module, realize the serial port driver and printing function in the Bootloader stage, and save the address of the printing function to the reserved information transmission space;
传递模块,将预留的信息传递空间地址作为启动参数传递给Linux;The transmission module transmits the reserved information transmission space address to Linux as a startup parameter;
获取模块,从信息传递空间中取得Bootloader中实现的打印函数地址。The acquisition module obtains the address of the printing function implemented in the Bootloader from the information transfer space.
优选地,所述信息传递空间、Bootloader空间以及Linux空间不互相覆盖。Preferably, the information transfer space, the Bootloader space and the Linux space do not overlap each other.
优选地,所述打印函数的类型包括:Preferably, the types of the print function include:
Bootloader早期用汇编代码实现的不使用堆栈的打印以及Bootloader后期用C代码实现的使用堆栈的打印。In the early days of the Bootloader, the printing without using the stack was realized by assembly code, and the printing using the stack was realized by the C code in the later stage of the Bootloader.
优选地,所述打印函数的地址保存在信息传递空间中。Preferably, the address of the printing function is stored in the information transfer space.
本发明所述的Linux中的早期串口打印调试方法,丰富了Linux的调试手段,可以在Linux启动的最早期实现真正的调试信息即时打印,提高了Linux开发、移植的效率。The early serial port printing and debugging method in Linux described in the present invention enriches the debugging means of Linux, and can realize real-time printing of debugging information at the earliest stage of Linux startup, and improves the efficiency of Linux development and transplantation.
附图说明Description of drawings
图1为本发明Linux中的早期串口打印调试方法一实施例的流程示意图;Fig. 1 is the schematic flow sheet of an embodiment of the early serial port printing debugging method in Linux of the present invention;
图2为本发明Linux中的早期串口打印调试方法一实施例的地址空间规划示意图;Fig. 2 is the address space planning schematic diagram of an embodiment of the early serial port printing debugging method in Linux of the present invention;
图3为本发明Linux中的早期串口打印调试方法一实施例的Bootloader实现流程示意图;Fig. 3 is the Bootloader implementation flow diagram of an embodiment of the early serial port printing debugging method in Linux of the present invention;
图4为本发明Linux中的早期串口打印调试方法一实施例的Linux实现流程示意图;Fig. 4 is the Linux implementation flow schematic diagram of an embodiment of the early serial port printing debugging method in Linux of the present invention;
图5为本发明Linux中的早期串口打印调试装置一实施例的结构示意图。FIG. 5 is a schematic structural diagram of an embodiment of an early serial port printing debugging device in Linux of the present invention.
本发明目的的实现、功能特点及优点将结合实施例,参照附图做进一步说明。The realization of the purpose of the present invention, functional characteristics and advantages will be further described in conjunction with the embodiments and with reference to the accompanying drawings.
具体实施方式Detailed ways
本发明中,Bootloader(引导程序),是在操作系统内核运行之前运行的一段小程序。通过Bootloader,可以初始化硬件设备、建立内存空间映射,从而将系统的软硬件环境带到一个合适的状态,以便为最终调用操作系统内核准备好正确的环境。In the present invention, Bootloader (bootloader) is a small program that runs before the operation of the operating system kernel. Through the Bootloader, hardware devices can be initialized and memory space mapping can be established, so as to bring the system's software and hardware environment to a suitable state, so as to prepare the correct environment for the final call of the operating system kernel.
Uart(Universal Asynchronous Receiver/Transmitter),俗称串口,是一种通用串行数据总线,用于异步通信。该总线双向通信,可以实现全双工传输和接收。在嵌入式设计中,UART用来与PC进行通信,包括与监控调试器和其它器件,如EEPROM通信。Uart (Universal Asynchronous Receiver/Transmitter), commonly known as serial port, is a universal serial data bus for asynchronous communication. The bus bidirectional communication, can realize full-duplex transmission and reception. In embedded designs, UARTs are used to communicate with PCs, including monitoring debuggers and other devices such as EEPROMs.
参照图1所示,其为本发明Linux中的早期串口打印调试方法一实施例的流程示意图,该方法包括:With reference to shown in Fig. 1, it is the schematic flow chart of an embodiment of the early serial port printing debugging method in Linux of the present invention, and this method comprises:
步骤S10、在嵌入式单板的CPU地址空间中,预留一段受保护的用于从Bootloader向Linux传递信息的信息传递空间;其中,上述信息传递空间、Bootloader空间、Linux空间不互相覆盖。其中,上述嵌入式单板的CPU地址空间中,还可规划出Bootloader的空间。Step S10 , in the CPU address space of the embedded board, reserve a section of protected information transfer space for transferring information from Bootloader to Linux; wherein, the above information transfer space, Bootloader space, and Linux space do not overlap each other. Wherein, in the CPU address space of the above-mentioned embedded single board, the space of the Bootloader can also be planned.
步骤S11、在Bootloader阶段实现串口驱动和打印函数,并将打印函数地址保存到预留的信息传递空间;其中,上述打印函数的类型有两种,一种是Bootloader早期用汇编代码实现的不使用堆栈的打印,另一种是Bootloader后期用C代码实现的使用堆栈的打印。进一步的,两者类型的打印函数的地址都保存到信息传递空间中。Step S11, implement the serial port driver and printing function in the Bootloader stage, and save the address of the printing function to the reserved information transmission space; wherein, there are two types of the above-mentioned printing function, one is that the early stage of the Bootloader is implemented with assembly code and does not use The printing of the stack, the other is the printing of the stack implemented by the C code in the later stage of the Bootloader. Further, the addresses of both types of printing functions are stored in the information transfer space.
步骤S12、将预留的信息传递空间地址作为启动参数传递给Linux;其中,启动参数为Linux已经实现的参数传递方法。本步骤可在加载Linux操作系统时进行。Step S12 , transfer the reserved information transfer space address to Linux as a startup parameter; wherein, the startup parameter is a parameter transfer method already implemented by Linux. This step can be performed when the Linux operating system is loaded.
步骤S13、从信息传递空间中取得Bootloader中实现的打印函数地址;并在此基础上实现Linux下的打印函数。其中,Linux下的打印函数也有两种,一种是在Linux启动的早期汇编代码阶段的汇编打印函数,用汇编代码实现的打印;另一种是在Linux启动的早期C代码阶段的C打印函数,用C代码实现的打印。本步骤可通过修改Linux代码实现,且可在启动初期进行。Step S13, obtaining the address of the printing function implemented in the Bootloader from the information transmission space; and realizing the printing function under Linux on this basis. Among them, there are also two types of printing functions under Linux, one is the assembly printing function in the early assembly code stage of Linux startup, and the printing is realized by assembly code; the other is the C printing function in the early C code stage of Linux startup , the printing realized by C code. This step can be implemented by modifying the Linux code, and can be performed at the initial stage of startup.
本实施例中,在Linux启动阶段使用的打印方法通过串口和显示设备输出调试信息。In this embodiment, the printing method used in the Linux startup phase outputs debugging information through a serial port and a display device.
参照图2所示,其为本发明Linux中的早期串口打印调试方法一实施例的地址空间规划示意图,嵌入式设备采用mips(Microprocessor withoutinterlocked piped stages,无内部互锁流水级)架构的处理器,根据mips处理器的要求Bootloader加载地址为0x9fc0 0000。在本实施例中,将Bootloader的代码段指定链接到0x8c10 0000地址,规划0x8c0 0000地址到0x8c10 0000共1M空间为信息传递空间,用于存贮boot_info信息。移植后的Linux代码段链接到0x8340 0000地址,只要Linux编译之后不超过140M,则不会覆盖到信息传递空间及其上的Bootloader代码段空间,进而保证了信息传递空间、Bootloader空间、Linux空间不互相覆盖。With reference to shown in Fig. 2, it is the address space planning schematic diagram of an embodiment of the early serial port printing debugging method in Linux of the present invention, and the embedded equipment adopts the processor of mips (Microprocessor without interlocked piped stages, without internal interlocking piped stages) framework, According to the requirements of the mips processor, the bootloader load address is 0x9fc0 0000. In the present embodiment, the code segment of the Bootloader is specified to be linked to the address 0x8c10 0000, and a total of 1M space from the address 0x8c0 0000 to 0x8c10 0000 is planned as the information delivery space for storing the boot_info information. The transplanted Linux code segment is linked to the address 0x8340 0000. As long as the Linux code segment does not exceed 140M after compiling, it will not overwrite the information transfer space and the Bootloader code segment space on it, thereby ensuring that the information transfer space, Bootloader space, and Linux space are consistent. cover each other.
参照图3所示,其为本发明Linux中的早期串口打印调试方法一实施例的Bootloader实现流程示意图,给出了在Bootloader阶段与本发明相关的操作流程,包括:Shown in Fig. 3 with reference to, it is the Bootloader implementation flowchart of an embodiment of the early serial port printing debugging method in Linux of the present invention, has provided the operating procedure relevant to the present invention in the Bootloader stage, comprises:
步骤201,Bootloader指定加载到0x9fc 00000地址,且将其代码段链接到0x8c10 0000。In step 201, the Bootloader is specified to be loaded at address 0x9fc 00000, and its code segment is linked to 0x8c10 0000.
步骤202,在boot阶段实现串口的驱动,使能设备串口。Step 202, realize the driver of the serial port in the boot stage, and enable the serial port of the device.
步骤203,在早期的汇编代码阶段,实现汇编代码版本的串口打印函数。该打印函数用于boot的初期,其功能有限,且因为不对堆栈进行维护,调用者在寄存器的使用上受限。该打印函数可命名为a_print。Step 203, in the early assembly code stage, realize the serial port printing function of the assembly code version. The print function is used in the initial stage of boot, its function is limited, and because the stack is not maintained, the caller is limited in the use of registers. The printing function can be named a_print.
步骤204,在后期的C代码阶段,实现C语言代码版本的串口打印函数。该打印函数用于C语言调用,其功能强大,有堆栈,调用者无需考虑寄存器的使用限制;但此时的函数不能在无堆栈的汇编程序中调用。该打印函数可命名为c_print。Step 204, implement the serial port printing function of the C language code version in the later stage of the C code. The print function is used for calling in C language. It has a powerful function and has a stack, and the caller does not need to consider the usage limit of registers; but the function at this time cannot be called in an assembly program without a stack. The printing function can be named c_print.
步骤205,将a_print和c_print的地址保存到boot_info中。
步骤206,Bootloader引导Linux时,将boot_info的地址0x8c00 0000,作为启动参数传递到Linux中。Step 206, when Bootloader guides Linux, the
参照图4所示,其为本发明Linux中的早期串口打印调试方法一实施例的Linux实现流程示意图,给出了在操作系统阶段与本发明相关的操作流程,包括:Shown in Fig. 4 with reference to, it is the Linux implementation flow schematic diagram of an embodiment of the early stage serial port printing debugging method in Linux of the present invention, has provided the operational flow process relevant to the present invention at the operating system stage, including:
步骤301,链接Linux的代码段加载到0x8340 0000。Step 301, load the code segment linking Linux to
步骤302,Linux启动时,第一阶段是汇编代码。在此阶段,可以得到Bootloader传递的参数,并将boot_info的地址保存到内存变量中。该过程可以在启动mips Linux的第一时间进行,传递到Linux中的参数保存在寄存器a0-a4中,可以直接从寄存器中读取到数据。
步骤303,通过boot_info地址加偏移值得到a_print函数的地址。a_print的地址具体保存在boot_info中的具体位置,可通过技术开发人员对boot_info结构的规划而确定。In step 303, the address of the a_print function is obtained by adding the offset value to the boot_info address. The address of a_print is specifically stored in the specific location in boot_info, which can be determined through the planning of the boot_info structure by the technical developer.
步骤304,基于a_print实现汇编函数early_os_a_print。在该函数中,将打印的字符串及其它参数,传递给a_print,以完成汇编版本的Linux打印程序。如此,在Linux的最初汇编代码阶段,即可使用该函数打印调试信息。该early_os_a_print函数的使用准则和a_print相同。Step 304, implement the assembly function early_os_a_print based on a_print. In this function, pass the printed character string and other parameters to a_print to complete the Linux printing program of the assembly version. In this way, this function can be used to print debugging information during the initial assembly code stage of Linux. The usage guidelines for the early_os_a_print function are the same as a_print.
步骤305,在进入到C代码阶段后,通过boot_info地址加偏移值得到c_print函数的地址。c_print的地址具体保存在boot_info中的具体位置,可通过技术开发人员对boot_info结构的规划而确定。Step 305, after entering the C code stage, the address of the c_print function is obtained by adding the offset value to the boot_info address. The address of c_print is stored in the specific location in boot_info, which can be determined by the technical developer's planning of the boot_info structure.
步骤306,基于c_print实现C函数early_os_c_print。在该函数中,将步骤305中得到的c_print函数地址赋值到一个函数指针变量上,通过函数指针可直接调用c_print函数。如此,可在Linux最初进入c代码阶段可打印调试信息。该early_os_c_print函数的使用准则和c_print相同。
步骤307,在Linux代码进一步执行后,Printk功能可以被使用时,便可使用Linux提供的打印函数;同时,也可继续使用early_os_c_print函数。Step 307, after the Linux code is further executed, when the Printk function can be used, the print function provided by Linux can be used; at the same time, the early_os_c_print function can also continue to be used.
参照图5所示,其为本发明Linux中的早期串口打印调试装置的结构示意图,该装置包括地址规划模块51、实现保存模块52、传递模块53以及获取模块54。该地址规划模块51,在嵌入式单板的CPU地址空间中,预留一段受保护的用于从Bootloader向Linux传递信息的信息传递空间;该实现保存模块52,在Bootloader阶段实现串口驱动和打印函数,并将打印函数地址保存到预留的信息传递空间;该传递模块53,将预留的信息传递空间地址作为启动参数传递给Linux;该获取模块54,从信息传递空间中取得Bootloader中实现的打印函数地址。Referring to FIG. 5 , it is a structural schematic diagram of an early serial port printing debugging device in Linux of the present invention. The device includes an
上述信息传递空间、Bootloader空间以及Linux空间不互相覆盖。The above information transmission space, Bootloader space and Linux space do not overlap each other.
上述打印函数的类型包括Bootloader早期用汇编代码实现的不使用堆栈的打印以及Bootloader后期用C代码实现的使用堆栈的打印。The types of the above printing functions include the printing without using the stack realized by the assembly code in the early stage of the Bootloader and the printing using the stack realized by the C code in the later period of the Bootloader.
上述打印函数的地址保存在信息传递空间中。The address of the above printing function is stored in the information delivery space.
以上所述仅为本发明的优选实施例,并非因此限制本发明的专利范围,凡是利用本发明说明书及附图内容所作的等效结构或等效流程变换,或直接或间接运用在其他相关的技术领域,均同理包括在本发明的专利保护范围内。The above descriptions are only preferred embodiments of the present invention, and are not intended to limit the patent scope of the present invention. Any equivalent structure or equivalent process transformation made by using the description of the present invention and the contents of the accompanying drawings, or directly or indirectly used in other related All technical fields are equally included in the scope of patent protection of the present invention.
Claims (8)
Priority Applications (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
CN201010197161.6A CN101894069B (en) | 2010-06-10 | 2010-06-10 | Debugging method and device of early serial port printing in Linux |
Applications Claiming Priority (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
CN201010197161.6A CN101894069B (en) | 2010-06-10 | 2010-06-10 | Debugging method and device of early serial port printing in Linux |
Publications (2)
Publication Number | Publication Date |
---|---|
CN101894069A true CN101894069A (en) | 2010-11-24 |
CN101894069B CN101894069B (en) | 2015-04-01 |
Family
ID=43103263
Family Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
CN201010197161.6A Expired - Fee Related CN101894069B (en) | 2010-06-10 | 2010-06-10 | Debugging method and device of early serial port printing in Linux |
Country Status (1)
Country | Link |
---|---|
CN (1) | CN101894069B (en) |
Cited By (7)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN102662844A (en) * | 2012-04-12 | 2012-09-12 | 深圳市共进电子股份有限公司 | Data tracking method at start time of linux inner core |
CN102929779A (en) * | 2012-10-31 | 2013-02-13 | 中标软件有限公司 | Method for debugging Linux drive program |
CN103345370A (en) * | 2013-06-28 | 2013-10-09 | 青岛海信宽带多媒体技术有限公司 | Method for inputting printing debugging information based on serial ports and device |
CN104007944A (en) * | 2014-06-23 | 2014-08-27 | 上海斐讯数据通信技术有限公司 | Debugging printing method and system |
CN104050080A (en) * | 2014-06-09 | 2014-09-17 | 汉柏科技有限公司 | Method and system for debugging linux kernel in user mode |
CN106294147A (en) * | 2016-08-09 | 2017-01-04 | 上海盈方微电子有限公司 | A kind of adjustment method of linux operating system |
CN110737480A (en) * | 2019-09-18 | 2020-01-31 | 福州瑞芯微电子股份有限公司 | Multiplexing method and device for serial port drivers |
Citations (3)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN1904853A (en) * | 2006-08-21 | 2007-01-31 | 北京中星微电子有限公司 | Embedded software loading debugging method and system thereof |
CN101042652A (en) * | 2006-03-20 | 2007-09-26 | 中兴通讯股份有限公司 | Method for protecting software startup parameter zone |
CN101477471A (en) * | 2009-01-07 | 2009-07-08 | 杭州海康威视数字技术股份有限公司 | Embedded system firmware on-line upgrading system |
-
2010
- 2010-06-10 CN CN201010197161.6A patent/CN101894069B/en not_active Expired - Fee Related
Patent Citations (3)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN101042652A (en) * | 2006-03-20 | 2007-09-26 | 中兴通讯股份有限公司 | Method for protecting software startup parameter zone |
CN1904853A (en) * | 2006-08-21 | 2007-01-31 | 北京中星微电子有限公司 | Embedded software loading debugging method and system thereof |
CN101477471A (en) * | 2009-01-07 | 2009-07-08 | 杭州海康威视数字技术股份有限公司 | Embedded system firmware on-line upgrading system |
Cited By (12)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN102662844A (en) * | 2012-04-12 | 2012-09-12 | 深圳市共进电子股份有限公司 | Data tracking method at start time of linux inner core |
CN102662844B (en) * | 2012-04-12 | 2015-11-18 | 深圳市共进电子股份有限公司 | A kind of method of data tracking when linux kernel starts |
CN102929779A (en) * | 2012-10-31 | 2013-02-13 | 中标软件有限公司 | Method for debugging Linux drive program |
CN103345370A (en) * | 2013-06-28 | 2013-10-09 | 青岛海信宽带多媒体技术有限公司 | Method for inputting printing debugging information based on serial ports and device |
CN103345370B (en) * | 2013-06-28 | 2016-04-27 | 青岛海信宽带多媒体技术有限公司 | Method and the device of Debugging message is printed based on serial ports input |
CN104050080A (en) * | 2014-06-09 | 2014-09-17 | 汉柏科技有限公司 | Method and system for debugging linux kernel in user mode |
CN104050080B (en) * | 2014-06-09 | 2017-11-28 | 汉柏科技有限公司 | User space debugs the method and system of linux kernel |
CN104007944A (en) * | 2014-06-23 | 2014-08-27 | 上海斐讯数据通信技术有限公司 | Debugging printing method and system |
CN104007944B (en) * | 2014-06-23 | 2019-11-22 | 上海斐讯数据通信技术有限公司 | A kind of debugging Method of printing and debugging print system |
CN106294147A (en) * | 2016-08-09 | 2017-01-04 | 上海盈方微电子有限公司 | A kind of adjustment method of linux operating system |
CN110737480A (en) * | 2019-09-18 | 2020-01-31 | 福州瑞芯微电子股份有限公司 | Multiplexing method and device for serial port drivers |
CN110737480B (en) * | 2019-09-18 | 2022-05-13 | 瑞芯微电子股份有限公司 | Serial port driver multiplexing method and device |
Also Published As
Publication number | Publication date |
---|---|
CN101894069B (en) | 2015-04-01 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
CN101894069B (en) | Debugging method and device of early serial port printing in Linux | |
CN105190550B (en) | Method for starting the computer system with multiple central processing units | |
CN105446806B (en) | A kind of processing method and processing device of the application program without response | |
CN106030546A (en) | computer program method | |
CN104740872A (en) | Method and device for operating and controlling game program in simulated Android environment | |
CN107402776A (en) | Bluetooth 4-based method for wirelessly upgrading stm32 singlechip controller firmware of mobile phone | |
CN103544100A (en) | Method, system and client side for testing APP of portable data processing equipment | |
CN110119282A (en) | A kind of internet-of-things terminal and system based on general-purpose built-in type computer | |
CN106796521A (en) | Independently of the API Version Controls of product issue | |
CN106598647B (en) | Intelligent device development platform | |
CN207611373U (en) | A kind of control system based on master/slave structure | |
CN112650540B (en) | A method and related device for launching a quick application | |
WO2022252804A1 (en) | Method and apparatus for displaying view control | |
Pavlov et al. | Windows embedded CE 6.0 fundamentals | |
CN113360440A (en) | Processor communication control method and related product | |
CN114741121A (en) | Method and device for loading module and electronic equipment | |
RU2008139874A (en) | DATA TRANSMISSION DEVICE FOR EMULATING THE BEHAVIOR OF A NAVIGATION DEVICE | |
US9250885B2 (en) | Image forming apparatus operating based on framework capable of sharing function among a plurality of bundles and method of installing bundle in image forming apparatus | |
CN103677842A (en) | Software tool configuration type integrated expansion calling method and system | |
CN111562436A (en) | Equipment driving method and device of double-core intelligent electric meter | |
CN102541647A (en) | Method for calling external function of executable component in software integration process | |
Datta | Android stack integration in embedded systems | |
US12217037B2 (en) | Package deployment method and apparatus, terminal device, and storage medium | |
CN117149413A (en) | Cloud service integrated deployment system and method for universal AI algorithm model | |
EP3832457B1 (en) | Support device and support program |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
C06 | Publication | ||
PB01 | Publication | ||
C10 | Entry into substantive examination | ||
SE01 | Entry into force of request for substantive examination | ||
C14 | Grant of patent or utility model | ||
GR01 | Patent grant | ||
CF01 | Termination of patent right due to non-payment of annual fee | ||
CF01 | Termination of patent right due to non-payment of annual fee |
Granted publication date: 20150401 |