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
python for lazarus
by
Jurassic Pork
[
Today
at 09:36:33 am]
IDE shows wrong Error Mes...
by
Hartmut
[
Today
at 09:25:03 am]
United OpenLib of Sound (...
by
net1999
[
Today
at 08:14:45 am]
Another Hunspell Wrapper ...
by
Raf20076
[
Today
at 06:50:00 am]
Hello some example of nes...
by
eldonfsr
[
Today
at 03:42:05 am]
Screen draws very slow un...
by
TheMouseAUS
[
Today
at 01:47:13 am]
Browser as a view using W...
by
delphius
[June 09, 2023, 11:18:50 pm]
Is changing name supposed...
by
Joanna
[June 09, 2023, 11:18:07 pm]
convert char of ansistrin...
by
toby
[June 09, 2023, 11:02:31 pm]
Reverse order of an array
by
jamie
[June 09, 2023, 10:55:39 pm]
Lazarus 2.2.6 and anchord...
by
Martin_fr
[June 09, 2023, 10:49:49 pm]
Why is a private type of ...
by
PascalDragon
[June 09, 2023, 10:30:51 pm]
program locks up using se...
by
PascalDragon
[June 09, 2023, 10:15:10 pm]
Feature announcement: Fun...
by
PascalDragon
[June 09, 2023, 10:11:49 pm]
is it possible to create ...
by
PascalDragon
[June 09, 2023, 10:04:25 pm]
How to download a file fr...
by
c4p
[June 09, 2023, 09:49:20 pm]
Suggestion on the lines o...
by
Remy Lebeau
[June 09, 2023, 09:19:08 pm]
Access violation with use...
by
Martin_fr
[June 09, 2023, 06:56:10 pm]
.cvd ClamAV database comp...
by
af0815
[June 09, 2023, 05:49:18 pm]
LADSPA for FP. Anyone int...
by
commanderz
[June 09, 2023, 05:41:40 pm]
CURL throws Error CURLE_R...
by
Hartmut
[June 09, 2023, 05:16:39 pm]
Generic array of records ...
by
paweld
[June 09, 2023, 04:42:14 pm]
list of IT assets
by
eljo
[June 09, 2023, 04:39:50 pm]
Can't place ATBinHex on f...
by
domasz
[June 09, 2023, 03:26:03 pm]
Testers needed: FpDebug a...
by
nanobit
[June 09, 2023, 01:26:41 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: LazSynaSer on OSX 10.13 (High Sierra) (Read 434 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: 1207
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: 1207
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