AGB  ·  Datenschutz  ·  Impressum  







Anmelden
Nützliche Links
Registrieren
Thema durchsuchen
Ansicht
Themen-Optionen

core2duotemp.c to core2duotemp.pas

Ein Thema von hathor · begonnen am 5. Aug 2007 · letzter Beitrag vom 31. Mai 2008
Antwort Antwort
Seite 6 von 7   « Erste     456 7      
hathor
(Gast)

n/a Beiträge
 
#51

Re: core2duotemp.c to core2duotemp.pas

  Alt 29. Mai 2008, 21:30
Zitat von Razor:
...I've made it 2 months ago.. aswell my driver and the K8(Athlon 64,Athlon X2) and K10(Phenom X4 and X3 and Opteron) readings all internal sensor.Shows same as coretemp..I did it my own no forum asking nothing..so yes

...and what about TJunction := 105, if NOT TJunction := 100 and NOT TJunction := 85 ???
  Mit Zitat antworten Zitat
Razor
(Gast)

n/a Beiträge
 
#52

Re: core2duotemp.c to core2duotemp.pas

  Alt 29. Mai 2008, 21:32
Zitat von hathor:
Zitat von Razor:
...I've made it 2 months ago.. aswell my driver and the K8(Athlon 64,Athlon X2) and K10(Phenom X4 and X3 and Opteron) readings all internal sensor.Shows same as coretemp..I did it my own no forum asking nothing..so yes

...and what about TJunction := 105, if NOT TJunction := 100 and NOT TJunction := 85 ???
What! You cant read the code...

Use this.

Delphi-Quellcode:
var
tjunction:integer;<<must be global var

Rdmsr($EE,msrvalue);
IF msrvalue.HiPart and $40000000 = 0 then TJunction := 100 Else TJunction := 85;
  Mit Zitat antworten Zitat
hathor
(Gast)

n/a Beiträge
 
#53

Re: core2duotemp.c to core2duotemp.pas

  Alt 29. Mai 2008, 22:20
Zitat von Razor:
Zitat von hathor:
Zitat von Razor:
...I've made it 2 months ago.. aswell my driver and the K8(Athlon 64,Athlon X2) and K10(Phenom X4 and X3 and Opteron) readings all internal sensor.Shows same as coretemp..I did it my own no forum asking nothing..so yes

...and what about TJunction := 105, if NOT TJunction := 100 and NOT TJunction := 85 ???
What! You cant read the code...

Use this.

Delphi-Quellcode:
var
tjunction:integer;<<must be global var

Rdmsr($EE,msrvalue);
IF msrvalue.HiPart and $40000000 = 0 then TJunction := 100 Else TJunction := 85;
I'm sorry - but YOU can't read Your own code - where is a value of 105???
  Mit Zitat antworten Zitat
Muetze1
(Gast)

n/a Beiträge
 
#54

Re: core2duotemp.c to core2duotemp.pas

  Alt 30. Mai 2008, 01:41
Zitat von Razor:
I've made it 2 months ago.. aswell my driver and the K8(Athlon 64,Athlon X2) and K10(Phenom X4 and X3 and Opteron) readings all internal sensor.Shows same as coretemp..I did it my own no forum asking nothing..so yes
Yes, no forum asking - just ICQ...
  Mit Zitat antworten Zitat
devidespe

Registriert seit: 7. Sep 2006
Ort: Berlin
434 Beiträge
 
Delphi 10.4 Sydney
 
#55

Re: core2duotemp.c to core2duotemp.pas

  Alt 30. Mai 2008, 10:45
Zitat von hathor:
I'm sorry - but YOU can't read Your own code - where is a value of 105???
@Razor: The technical way of reading MSR's with a driver is one thing, the correct detection of TjMax is another one. In the meantime I'm having no doubt, that you've managed the first thing well.

But the correct detection of TjMax is a huge discussion within the web, and we have here 2 ways of doing this. The first one is the creation of a CPUID table, where you can set the TjMax value for various processor types and steppings. The other way is the usage of MSR EEh, where you have to different between 85, 100 and 105 °C. Some programs use 95 °C as well. Please see the following links to read the discussions and extend your knowledge:

RealTemp Discussion
SpeedFan discussion
Everest discussion
Devid
  Mit Zitat antworten Zitat
Razor
(Gast)

n/a Beiträge
 
#56

Re: core2duotemp.c to core2duotemp.pas

  Alt 30. Mai 2008, 14:22
How to detect all of these Deltas can some one please tell me?

My read temperature is the same as core temp's so there isnt no bad code in my code.
Yes Muetze you gave me tips but you didnt code it.
  Mit Zitat antworten Zitat
devidespe

Registriert seit: 7. Sep 2006
Ort: Berlin
434 Beiträge
 
Delphi 10.4 Sydney
 
#57

Re: core2duotemp.c to core2duotemp.pas

  Alt 30. Mai 2008, 14:54
Why don't you simply upload your application for all of us ?

Its hard to give a solid feedback if you haven't any practical application, just source parts.
Devid
  Mit Zitat antworten Zitat
Razor
(Gast)

n/a Beiträge
 
#58

Re: core2duotemp.c to core2duotemp.pas

  Alt 30. Mai 2008, 14:55
Yes however how can i SetThreadAffinityMask with JVCL thread timer?
Devidespe can you help me with this?Does this mean i have to use 4 threads?
After this i upload the app

I tryed this

SetThreadAffinityMask(jvthreadtimer1.Thread.Handle ,$0001);
SetThreadAffinityMask(jvthreadtimer1.Thread.Handle ,$0001);
  Mit Zitat antworten Zitat
Muetze1
(Gast)

n/a Beiträge
 
#59

Re: core2duotemp.c to core2duotemp.pas

  Alt 30. Mai 2008, 15:16
Zitat von Razor:
Yes Muetze you gave me tips but you didnt code it.
Yes, I did this all before and I even send the correct code, but it was scrambled by ICQ emoicons.

Zitat von Razor:
I tryed this
Code:
SetThreadAffinityMask(jvthreadtimer1.Thread.Handle,$0001);
SetThreadAffinityMask(jvthreadtimer1.Thread.Handle,$0001);
RTFM. This is just so ease to change, you just have to read the MSDN. And the best thing: we dealed with this together with icq, it seems to me, that you have not read or understand the whole session.

But anyway, this is not the way to solve the actual problem discussed here.
  Mit Zitat antworten Zitat
Razor
(Gast)

n/a Beiträge
 
#60

Re: core2duotemp.c to core2duotemp.pas

  Alt 30. Mai 2008, 15:25
1 shl ProcNumber(CPUIndex) } like this?

Zitat:
RTFM. This is just so ease to change, you just have to read the MSDN. And the best thing: we dealed with this together with icq, it seems to me, that you have not read or understand the whole session.
Its not easy for me and i have read it 3 times.Nothing about the dwaffinity mask parameter.
It doesnt change even if i put in $0001,$0002,$0004,$0008 it just wont change.
  Mit Zitat antworten Zitat
Antwort Antwort
Seite 6 von 7   « Erste     456 7      


Forumregeln

Es ist dir nicht erlaubt, neue Themen zu verfassen.
Es ist dir nicht erlaubt, auf Beiträge zu antworten.
Es ist dir nicht erlaubt, Anhänge hochzuladen.
Es ist dir nicht erlaubt, deine Beiträge zu bearbeiten.

BB-Code ist an.
Smileys sind an.
[IMG] Code ist an.
HTML-Code ist aus.
Trackbacks are an
Pingbacks are an
Refbacks are aus

Gehe zu:

Impressum · AGB · Datenschutz · Nach oben
Alle Zeitangaben in WEZ +1. Es ist jetzt 01:43 Uhr.
Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024 by Thomas Breitkreuz