Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
Operating Systems
»
macOS / Mac OS X
»
LazSynaSer on OSX 10.13 (High Sierra)
Free Pascal
Website
Downloads
Wiki
Documentation
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Documentation (RTL/FCL/LCL)
Bugtracker
CCR Bugs
IRC channel
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
Fill dual brush color in ...
by
majid.ebru
[
Today
at 06:15:58 am]
Tools I made for my needs
by
zeljkoc
[
Today
at 05:20:14 am]
Lazarus 2.2.6 can't insta...
by
eldonfsr
[
Today
at 04:57:33 am]
How to download a file fr...
by
jmpessoa
[
Today
at 01:44:04 am]
Search in files
by
dbannon
[
Today
at 01:24:47 am]
Are We Dead Yet?
by
dbannon
[
Today
at 01:09:47 am]
[Closed] Holding form pos...
by
furious programming
[
Today
at 12:33:30 am]
May be an fpc issue
by
Curt Carpenter
[June 07, 2023, 09:52:49 pm]
Something wrong when i cl...
by
eljo
[June 07, 2023, 09:31:49 pm]
DBEdit - display setting ...
by
rvk
[June 07, 2023, 09:29:46 pm]
How to setup Exception-Ha...
by
ASerge
[June 07, 2023, 08:48:55 pm]
Lazarus for RISC OS
by
StefanRISCOS
[June 07, 2023, 08:17:46 pm]
Best way to include lots ...
by
Nicole
[June 07, 2023, 08:12:01 pm]
Insert variant array to e...
by
Nicole
[June 07, 2023, 08:09:05 pm]
Changes in "Search Result...
by
n7800
[June 07, 2023, 07:25:10 pm]
Filter improvments for "S...
by
n7800
[June 07, 2023, 07:00:53 pm]
[Solved] Can I use a font...
by
furious programming
[June 07, 2023, 05:29:19 pm]
Feature announcement: Fun...
by
Peter H
[June 07, 2023, 03:31:58 pm]
SQLITE3: TSQLQuery fails ...
by
upsidasi
[June 07, 2023, 03:24:50 pm]
[SOLVED] IDE freezing on ...
by
maurobio
[June 07, 2023, 02:25:15 pm]
ODBC System DSN connected...
by
LacaK
[June 07, 2023, 02:18:22 pm]
structured types structur...
by
Чебурашка
[June 07, 2023, 01:31:09 pm]
Access violation with use...
by
Martin_fr
[June 07, 2023, 12:55:49 pm]
[SOLVED] How to send line...
by
Slawek
[June 07, 2023, 12:08:07 pm]
Cannot connect to MariaDB...
by
TRon
[June 07, 2023, 11:10:35 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: LazSynaSer on OSX 10.13 (High Sierra) (Read 433 times)
JimKueneman
Full Member
Posts: 195
LazSynaSer on OSX 10.13 (High Sierra)
«
on:
November 21, 2022, 08:43:39 pm »
Transitioning over from Synapse to Indy and needed a ComPort component so I grabbed LazSynaSer. I can not get it to connect to anything with the changes that were made in the Purge method. If I change it back to what SynaSer did it works. During the Purge call I get "This is not a Typewriter" error code.
I pulled the version of LazSynaSer from the GitHub repository a few days ago and using Lazarus 2.2.4.
Code: Pascal
[Select]
[+]
[-]
{$IFDEF DARWIN}
// JDK
function
real_tcflush
(
fd
,
qsel
:
cint
)
:
cint
;
cdecl
;
external
name
'tcflush'
;
function
TCFlush
(
fd
,
qsel
:
cint
)
:
cint
;
{$ifdef VER2_0}inline;{$endif}
begin
TCFlush
:
=
real_tcflush
(
fd
,
qsel
)
;
end
;
{$ENDIF}
{$IFNDEF MSWINDOWS}
procedure
TBlockSerial
.
Purge
;
begin
{$IFNDEF FPC}
SerialCheck
(
ioctl
(
FHandle
,
TCFLSH
,
TCIOFLUSH
)
)
;
{$ELSE}
{$IFDEF DARWIN}
SerialCheck
(
TCFlush
(
FHandle
,
TCIOFLUSH
)
)
;
// JDK
// SerialCheck(fpioctl(FHandle, TCIOflush, Pointer(PtrInt(TCIOFLUSH))));
{$ELSE}
SerialCheck
(
fpioctl
(
FHandle
,
TCFLSH
,
Pointer
(
PtrInt
(
TCIOFLUSH
)
)
)
)
;
{$ENDIF}
{$ENDIF}
FBuffer
:
=
''
;
ExceptCheck
;
end
;
{$ELSE}
Thoughts?
Jim
Logged
Jurassic Pork
Hero Member
Posts: 1206
Re: LazSynaSer on OSX 10.13 (High Sierra)
«
Reply #1 on:
November 22, 2022, 12:37:19 am »
Hello,
last versions of synaser.pas and lazsynaser.pas use the same code for purge (except for freeBSD that lazserial doen't manage)
I have no problem on MAC OS catalina 10.15 using two USB serial ports.
Friendly, J.P
Logged
Jurassic computer : Sinclair ZX81 - Zilog Z80A à 3,25 MHz - RAM 1 Ko - ROM 8 Ko
JimKueneman
Full Member
Posts: 195
Re: LazSynaSer on OSX 10.13 (High Sierra)
«
Reply #2 on:
November 22, 2022, 04:55:31 pm »
Ok thanks. I would get that error on anything I tried to open including the Bluetooth cu and tty versions. Do you know the reason it was changed? Is there something concerning about the old way?
Jim
Logged
Jurassic Pork
Hero Member
Posts: 1206
Re: LazSynaSer on OSX 10.13 (High Sierra)
«
Reply #3 on:
November 22, 2022, 05:08:36 pm »
Have a look
here
( no comment
)
«
Last Edit: November 22, 2022, 05:10:35 pm by Jurassic Pork
»
Logged
Jurassic computer : Sinclair ZX81 - Zilog Z80A à 3,25 MHz - RAM 1 Ko - ROM 8 Ko
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
Operating Systems
»
macOS / Mac OS X
»
LazSynaSer on OSX 10.13 (High Sierra)
TinyPortal
© 2005-2018