Free serial port monitor windows 7 64

Электроника для всех

Блог о электронике

Терминальные программы

Практически постоянно приходится смотреть что шлет контроллер или заслать в него какой нибудь байтик. Это нужно для отладки, иногда для настройки. Порой для управления. Кому как, я так для отладки использую. Без толкового инструмента тут никак, поэтому я давно уже присмотрел себе парочку прикольных программок.

Первой хотел бы упомянуть Terminal v1.9b by Bray. На мой взгляд — гениальная программа! Более удобного интерфейса для работы я не встречал. Судите сами — все под рукой!

Free serial port monitor windows 7 64. Смотреть фото Free serial port monitor windows 7 64. Смотреть картинку Free serial port monitor windows 7 64. Картинка про Free serial port monitor windows 7 64. Фото Free serial port monitor windows 7 64

Для настроек скорости работы, номера порта, параметров передачи и прочих сиюминутных потребностей не надо даже по менюшкам лазать — все прям сразу же. Также можно в один тык выдать инфу в разных системах счисления, что порой бывает очень удобно. Я бы сказал жизненно необходимо.
В один клик доступна таблица ASCII, а среди особых фишек которую я очень люблю — возможность выдать поток данных в виде графика от 0 до 255.
А еще можно писать скрипты на паскалеподобном языке, делающие с входящими-исходящими данными всякие непотребности.
В общем, рулез!

Из минусов можно только отметить некоторую тормознутость при выводе в Hex кодах, но это мелочи. Еще автор похоже забил на эту разработку, так что новых версий я не видел уже много лет. Найти эту дивную программу можно много где, в том числе и у меня:

Вторая программа это COM Port Toolkit от Михаила Голикова. Ей я пользуюсь гораздо реже, но она умеет весьма нужную штуку — возможность перехватывать обмен данными между софтом и физическим COM портом. Это чертовски выручило меня когда я ломал защиту PLC, а также помогло отреверсить обмен между программой настройки модулей HM-TR433. В общем, редко, но метко.

Free serial port monitor windows 7 64. Смотреть фото Free serial port monitor windows 7 64. Смотреть картинку Free serial port monitor windows 7 64. Картинка про Free serial port monitor windows 7 64. Фото Free serial port monitor windows 7 64

Программка эта довольно проста в обращении, имеет три режима работы:

Также можно писать скрипты на этот раз уже на Си подобном языке. Мне это больше нравится, т.к. я его лучше знаю.

Недостатков пожалуй три:

Демка проработала 30 дней, потом захотела денег. Но свою работу по облегчению разбора протокола обмена PLC она выполнила.

Поначалу была мысль вспомнить шальное детство, сдуть пыль с родимого SoftICE и похачить защиту, но потом вспомнил что шашек такой формы не брал в руки уже лет 5, как минимум. Да и цена программы оказалась смешной — всего 10 баксов для русскоязычных пользователей.
Так что проще было ее зарегистрировать. Тем более штука нужная и уже неоднократно себя окупившая.

Источник

Portmon for Windows v3.03

By Mark Russinovich

Published: January 12, 2012

Free serial port monitor windows 7 64. Смотреть фото Free serial port monitor windows 7 64. Смотреть картинку Free serial port monitor windows 7 64. Картинка про Free serial port monitor windows 7 64. Фото Free serial port monitor windows 7 64 Download Portmon (226 KB)
Run now from Sysinternals Live.

Introduction

Portmon is a utility that monitors and displays all serial and parallel port activity on a system. It has advanced filtering and search capabilities that make it a powerful tool for exploring the way Windows works, seeing how applications use ports, or tracking down problems in system or application configurations.

Portmon 3.x

Version 3.x of Portmon marks the introduction of a number of powerful features.

The on-line help-file describes all these features, and more, in detail.

Free serial port monitor windows 7 64. Смотреть фото Free serial port monitor windows 7 64. Смотреть картинку Free serial port monitor windows 7 64. Картинка про Free serial port monitor windows 7 64. Фото Free serial port monitor windows 7 64

Installation and Use

Simply execute the Portmon program file (portmon.exe) and Portmon will immediately start capturing debug output. To run Portmon on Windows 95 you must get the WinSock2 update from Microsoft. Note that if you run Portmon on Windows NT/2K portmon.exe must be located on a non-network drive and you must have administrative privilege. Menus, hot-keys, or toolbar buttons can be used to clear the window, save the monitored data to a file, search output, change the window font, and more. The on-line help describes all of Portmon’s features.

Portmon understands all serial and parallel port I/O control (IOCTLs) commands and will display them along with interesting information regarding their associated parameters. For read and write requests Portmon displays the first several dozen bytes of the buffer, using ‘.’ to represent non-printable characters. The Show Hex menu option lets you toggle between ASCII and raw hex output of buffer data.

How it Works: WinNT

The Portmon GUI is responsible for identifying serial and parallel ports. It does so by enumerating the serial ports that are configured under HKEY_LOCAL_MACHINE\Hardware\DeviceMap\SerialComm and the parallel ports defined under HKEY_LOCAL_MACHINE\Hardware\DeviceMap\Parallel Ports. These keys contain the mappings between serial and parallel port device names and the Win32-accessible names.

When you select a port to monitor, Portmon sends a request to its device driver that includes the NT name (e.g. \device\serial0) that you are interested in. The driver uses standard filtering APIs to attach its own filter device object to the target device object. First, it uses ZwCreateFile to open the target device. Then it translates the handle it receives back from ZwCreateFile to a device object pointer. After creating its own filter device object that matches the characteristics of the target, the driver calls IoAttachDeviceByPointer to establish the filter. From that point on the Portmon driver will see all requests aimed at the target device.

Portmon has built-in knowledge of all standard serial and parallel port IOCTLs, which are the primary way that applications and drivers configure and read status information from ports. The IOCTLs are defined in the DDK file \ddk\src\comm\inc\ntddser.h and \ddk\src\comm\inc\ntddpar.h, and some are documented in the DDK.

How it Works: Windows 95 and 98

On Windows 95 and 98, the Portmon GUI relies on a dynamically loaded VxD to capture serial and parallel activity. The Windows VCOMM (Virtual Communications) device driver serves as the interface to parallel and serial devices, so applications that access ports indirectly use its services. The Portmon VxD uses standard VxD service hooking to intercept all accesses to VCOMM’s functions. Like its NT device driver, Portmon‘s VxD interprets requests to display them in a friendly format. On Windows 95 and 98 Portmon monitors all ports so there is no port selection like on NT.

Free serial port monitor windows 7 64. Смотреть фото Free serial port monitor windows 7 64. Смотреть картинку Free serial port monitor windows 7 64. Картинка про Free serial port monitor windows 7 64. Фото Free serial port monitor windows 7 64 Download Portmon (226 KB)

Run now from Sysinternals Live.

Источник

Free Serial Analyzer

Free Serial Analyzer Overview

Free serial port monitor windows 7 64. Смотреть фото Free serial port monitor windows 7 64. Смотреть картинку Free serial port monitor windows 7 64. Картинка про Free serial port monitor windows 7 64. Фото Free serial port monitor windows 7 64

Free Serial Analyzer is a non-intrusive Serial Port sniffer and software RS-232/RS-422/RS-485 protocol analyzer for Windows.

It supports monitoring of serial port data on both 32-bit / 64-bit Windows desktop/server platforms including Windows 10 and Windows 2019 Server.

Our software-based free serial port monitor is an ideal alternative to expensive hardware RS232/RS485/RS422 logic analyzers. This COM port analyzer utility requires no additional cabling and allows you to effectively capture/display any data and commands transmitted through your computer’s serial ports.

The captured raw data is automatically decoded, analyzed and each serial communication packet is then presented in an easily readable format, allowing you to quickly and efficiently analyze data exchanged over RS 232, RS 422, or RS 485 serial interfaces.

You can consider this serial port packet sniffer an effective tool to simplify development, testing and debugging of serial applications and devices.

Using our free serial protocol analyzer you don’t have to worry about any additional hardware, null-modem cables, DB-25 or DE-9 connectors and so on. It’s a pure software-based serial port sniffing solution. Just download, install and start using it in seconds!

How Free Serial Analyzer Works

Program installs filter driver on top of a serial device driver. Filter driver then intercepts I/O requests issued by an application communicating with a serial device. All control requests (requests that configure port parameters) and data transfer requests (requests that pass data between app and RS-232/RS-422/RS-485 hardware device) are monitored. Each serial data request is then parsed and displayed in an easy-to-understand form using several different views.

This freeware serial snooper even allows you to trace serial data transferred between applications and devices connected to the remote PC (Device Monitoring Studio Server, network or Internet connection to the remote computer is required then).

Download this free com port monitoring software now!

Free Serial Analyzer OS support:

Our Free Serial Port Snooper supports all modern Windows server and desktop platforms starting from Windows Vista, including Windows 8/8.1 and Windows 10 operating systems. Both x86 and x64 versions are supported.

Free Serial Analyzer Features

This Free COM Port Analyzer supports all standard Data bits, Parity (odd, even, mark, space), Stop bits, XON/XOFF Software and Hardware Flow control.

Paid editions of this product may also be used as affordable rs485/rs232 MODBUS sniffer, ACSII/RTU protocol analyzer and serial data logger.

If you are looking for non-intrusive software-based serial port monitoring solution to view serial protocol packets, this Free Serial Port Analyser is exactly what you need. This COM port monitoring tool requires no additional hardware and allows you to facilitate serial application development, debug protocol errors, view and test device failures.

Our Free Serial Port Monitor Usage Scenarios

Free Software Serial Port Logic Analyzer Target Groups

Our free com port snooper supports monitoring of legacy and PnP serial ports, serial to usb converters, serial adapters and software-based Virtual Serial Ports.

Download this Free COM Port Monitor and start analyzing Serial Port communications in seconds!

Источник

Serial Monitor

Serial Port Monitor

This software allows you to monitor the data that devices and apps exchange over serial ports. The program facilitates the development, debugging and analysis of software and hardware solutions that use serial communications for data exchange. It has full set of tools for successful decoding of serial protocols and analyzing packets data. The application’s various editions include features for filtering, browsing, searching, recording, and data playback.

Serial Monitor provides not only a wide range of visualization tools for popular serial protocols (including PPP, MODBUS, BACnet MSTP) and raw data, but also utilities for creating your own custom visualizers, allowing you to parse any data and custom protocols in a convenient way. In addition to visualizers, product includes tools for data exporting, reproducing data from previously recorded log files, redirecting this data to COM ports, advanced serial port terminal, utility for sending MODBUS Commands and built-in scripting for tools automation.

This is entirely a software COM port analyzing and serial port data logging solution that allows you to avoid using hardware equipment, null-modem cable, additional DB-25 or DE-9 connectors and so on.

Our serial port data capturing software has been developed and constantly improved for more than 20 years. It has an intuitive user interface, detailed documentation with examples and requires no special programming skills to start using it. Download this COM port analyzer now and start spying serial ports in a few seconds!

Free serial port monitor windows 7 64. Смотреть фото Free serial port monitor windows 7 64. Смотреть картинку Free serial port monitor windows 7 64. Картинка про Free serial port monitor windows 7 64. Фото Free serial port monitor windows 7 64

Serial Monitor works by installing a filter driver on top of a serial device driver. A filter driver intercepts all I/O requests issued by application. There are control requests that configure port parameters as well as data transfer requests that pass data between application and serial device. Each request is captured and passed to a running monitoring session within Serial Monitor for further analysis.

Serial Monitor includes a large set of data protocols to parse each intercepted data transfer request. The user can add his own protocols using the simple yet powerful protocol definition language.

Each monitored data packet is parsed according to the configured protocols. An optional capture filter can be used to locate data of interest. A wide set of built-in and custom data visualizers and exporters are provided to give the user powerful insight on the monitored data.

The built-in powerful Serial Terminal module provides a versatile terminal emulation environment which can be used in collaboration with a running monitoring session.

Serial Monitor provides rich support for MODBUS protocol and devices, including specialized data visualizers, MODBUS Send window (MODBUS packet builder and sender) and full MODBUS protocol definition.

Virtually every component of the Serial Monitor may be programmatically controlled by a running script, written in TypeScript (superset of JavaScript).

Download this software rs232/rs422/rs485 serial protocol analyzer now!

Serial port monitoring and data processing algorithms are extremely optimized in order to provide you with slick user experience and eliminate all negative impact on operating system performance, stability, computer resources consumption, and introduction of communication delays even at high non-standard data transfer rates. This makes our non-intrusive rs485/rs422, rs232 data tracer different from any competing products.

Our serial protocol analyzer supports all standard Data bits, Stop bits, Parity (odd/even/mark/space), software XON/XOFF and hardware flow control, Bit rates of 75, 110, 300, 1200, 2400, 4800, 9600, 19200, 38400, 57600 and 115200 bit/s and more.

Being used with our Virtual Serial Port Tools, rs232 port sniffer may intercept, capture and trace serial port traffic which flows via named pipes.

It allows you to view, explore and export parsed data in a majority of binary and text formats: Hex, Binary, Decimal data, text: ASCII, ANSI, OEM, UNICODE UTF16, UTF8, ISO, CSV

Powerful display and capture filter features may be used if you want to customize serial port monitor data output.

Using custom protocol feature you can parse any SCADA industrial protocol which is transmitted over RS485, RS422 or RS232 serial connection, dial up/radio modem or TCP/IP, UDP/IP network.

Download our rs232/422/485 port monitor and serial datalogger/parser/decoder now!

Our serial port analyzer and rs232 serial data logger supports all modern desktop/server Windows platforms starting from Windows XP (32-bit / 64-bit), including Windows 2019 server and Windows 10 (x86 / x64) operating systems.

* Connected to the computer via legacy / PnP RS-232, RS-422, RS-485 serial ports, serial to usb converters and usb to serial adapters.

Additionally, it supports monitoring of serial data from devices connected to the PC using wireless bluetooth serial ports. Software-based Virtual COM ports are also supported.

Download this serial port packets analyzer now!

Источник

Система ⇒ Eltima Serial Port Monitor Pro 7.0.342

Free serial port monitor windows 7 64. Смотреть фото Free serial port monitor windows 7 64. Смотреть картинку Free serial port monitor windows 7 64. Картинка про Free serial port monitor windows 7 64. Фото Free serial port monitor windows 7 64

Free serial port monitor windows 7 64. Смотреть фото Free serial port monitor windows 7 64. Смотреть картинку Free serial port monitor windows 7 64. Картинка про Free serial port monitor windows 7 64. Фото Free serial port monitor windows 7 64

Serial Port Monitor также предлагает расширенные возможности фильтрации и поиска, профессиональный встроенный терминал, различные способы экспорта данных, и, среди прочих ключевых преимуществ, гибкий и легкий в использовании интерфейс. Это полностью готовое к использованию программное решение, без необходимости устанавливать какое-либо дополнительное оборудование.

Анализировать активность последовательного порта
Serial Port Monitor может подключаться к COM-порту, даже если тот уже открыт каким-нибудь приложением, и сразу приступать к его мониторингу. Все данные, проходящие через контролируемый COM-порт, отобразятся в нашей программе мониторинга. Поскольку все записывается в режиме реального времени, вы сможете мгновенно выявлять проблемы.

Кроме того, вы можете перенаправить все данные мониторинга в заданный файл или скопировать все записанные данные в буфер обмена. Serial Port Monitor дает вам возможность перехватывать и записывать все управляющие коды ввода/вывода последовательных портов (IOCTLs), отслеживать все их данные и параметры. Вы можете сохранять любую сессию мониторинга и при необходимости загружать ее в следующий раз.

Мониторить несколько портов в пределах одной сессии
У Serial Port Monitor есть уникальная функциональная возможность мониторинга нескольких COM-портов одновременно. Теперь вы можете собрать данные о том, как приложения взаимодействуют с двумя или более портами и параллельно с этим с несколькими устройствами в рамках одной сессии. Полученные и отправленные данные мониторинга будут представлены (записаны) в отдельном журнале в порядке поступления, что значительно упростит анализ.

Разные варианты просмотра полученных данных
Вы можете просматривать данные мониторинга сразу в 4 режимах: таблица, строка, дамп или терминал, каждый из которых предлагает свой способ представления записанных последовательных данных. Serial Port Monitor дает возможность выбирать фильтры мониторинга, экономя таким образом ваше время и позволяя отслеживать только интересующие события.

Эмулировать передачу данных последовательному устройству
Вы можете отправлять данные в различных форматах (стринг, двоичный, восьмеричный, десятичный, шестнадцатеричный, смешанный) контролируемому последовательному порту, как будто они были отправлены непосредственно контролируемым приложением с использованием функции режима терминала Serial Port Monitor. Таким образом, вы можете отслеживать реакции контролируемого последовательного устройства на некоторые специальных команды и данные.

Список всех функций Serial Port Monitor:
• Запуск/остановка мониторинга последовательного порта, открытого другим приложением (доступно только в версии Professional)
• Serial Port Monitor полностью совместим с Windows 10 (x32 и x64)
• Serial Port Monitor и все его драйверы имеют цифровую подпись
• Одновременный контроль неограниченного количества последовательных портов
• Возможность добавления нескольких портов для мониторинга в рамках одной сессии
• Поддерживает все виды COM-портов: стандартные встроенные порты, порты плат расширения, виртуальные программные последовательные порты, COM-порты Bluetooth, USB to SERIAL адаптеры и др.
• Мониторинг передачи данных и ее логирование
• Расширенный диалог отправки: легко отправлять различные типы данных, применять псевдонимы для быстрого набора текста и автоматизации, отправлять файлы и замыкать функции и команды, изменять параметры последовательного порта в процессе работы (доступно только в версии Professional)
• Сбор данных в режиме реального времени
• Различные визуализаторы мониторинга: табличное представление, вид строки, дамп и терминал
• Логирование входящих и исходящих потоков данных
• Файл с данными можно разбить на несколько файлов или задать ему определенный размер
• Возможность экспорта необработанных данных в файл из терминального вида
• Разноцветная визуализация команд в табличном видовом представлении
• Любое программное/аппаратное обеспечение, работающее с последовательным портом, может контролироваться
• Возможность перехватывать и записывать все последовательные управляющие коды ввода/вывода (IOCTLs), отслеживая все их данные и параметры
• Настраиваемое логирование сессии мониторинга (несколько форматов временных меток, различные системы счисления, настраиваемая длина строки и т.д.)
• Удобное и гибкое управление сессией мониторинга: сохранение и загрузка всех данных мониторинга, функции экспорта и перенаправления в файл
• Экспорт сессии мониторинга (HTML, ASCII текст, Unicode текст, Exсel CSV) и автоматическое перенаправление в файл (Serial Port Monitor автоматически добавит в файл все данные мониторинга в режиме реального времени)
• Поддерживает копирование всех записанных данных в буфер обмена
• Поддерживает автоматическое добавление данных до и после передачи пакета
• Поддерживается полнодуплексный режим
• Визуализируется статус управляющих линий
• Уникальные инструменты фильтрации потока с пресетами
• Поддерживаются все скорости передачи данных
• Гибкая конфигурация: стоп-биты, управление потоком, контроль четности, биты данных, выделение и пр.
• Удобный гибкий интерфейс: программное обеспечение разработано специально для обеспечения легкого доступа к последовательным портам, никаких навыков программирования не требуется

Free serial port monitor windows 7 64. Смотреть фото Free serial port monitor windows 7 64. Смотреть картинку Free serial port monitor windows 7 64. Картинка про Free serial port monitor windows 7 64. Фото Free serial port monitor windows 7 64

ОС: Windows XP/2003/2008/Vista/7/8/10 и Windows Server 2012/2016.

Скачать программу Eltima Serial Port Monitor Pro 7.0.342 (15,8 МБ):

Источник

Добавить комментарий

Ваш адрес email не будет опубликован. Обязательные поля помечены *